This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="fullscreen-bg"> | |
<video loop muted autoplay poster="img/videoframe.jpg" class="fullscreen-bg__video"> | |
<source src="video/big_buck_bunny.mp4" type="video/mp4"> | |
<source src="video/big_buck_bunny.ogv" type="video/ogv"> | |
<source src="video/big_buck_bunny.webm" type="video/webm"> | |
</video> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-aspect-ratio: 16/9) { | |
.fullscreen-bg__video { | |
width: 100%; | |
height: auto; | |
} | |
} | |
@media (max-aspect-ratio: 16/9) { | |
.fullscreen-bg__video { | |
width: auto; | |
height: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-aspect-ratio: 16/9) { | |
.fullscreen-bg__video video { | |
height: 300%; | |
top: -100%; | |
} | |
} | |
@media (max-aspect-ratio: 16/9) { | |
.fullscreen-bg__video video { | |
width: 300%; | |
left: -100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 767px) { | |
.fullscreen-bg { | |
background: url('../img/videoframe.jpg') center center / cover no-repeat; | |
} | |
.fullscreen-bg__video { | |
display: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 767px) { | |
.fullscreen-bg { | |
background: url('../img/videoframe.jpg') center center / cover no-repeat; | |
} | |
.fullscreen-bg__video { | |
display: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 767px) { | |
.fullscreen-bg { | |
background: url('../img/videoframe.jpg') center center / cover no-repeat; | |
} | |
.fullscreen-bg__video { | |
display: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 767px) { | |
.fullscreen-bg { | |
background: url('../img/videoframe.jpg') center center / cover no-repeat; | |
} | |
.fullscreen-bg__video { | |
display: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<picture> | |
<source type="image/svg" src="logo.svg" /> | |
<source type="image/png" src="logo.png" /> | |
<img src="logo.gif" alt=“Image description" /> | |
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<picture> | |
<source media="(orientation: landscape)" srcset="landscape.jpg" /> | |
<img src="portrait.jpg" alt="Image description." /> | |
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<picture> | |
<!-- 16:9 crop --> | |
<source | |
media="(min-width: 40em)" | |
srcset=“images/wide/large.jpg 1920w, | |
images/wide/medium.jpg 960w, | |
images/wide/small.jpg 480w" /> | |
sizes=“100vw" | |
<!-- square crop --> |
OlderNewer