A Pen by Justin Heideman on CodePen.
Created
April 16, 2019 15:55
-
-
Save justinph/4437604103beb80a87cf2100749f3d8c to your computer and use it in GitHub Desktop.
AMP Video
This file contains hidden or 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
<main> | |
<div class="video-wrapper"> | |
<amp-video | |
src="https://int.nyt.com/data/videotape/finished/2018/09/1537545825/furniture-up-shorter-360h.mp4" | |
poster="https://peach.blender.org/wp-content/uploads/bbb-splash.png" | |
layout="fill" | |
loop | |
noaudio | |
autoplay> | |
</amp-video> | |
</div> | |
</main> |
This file contains hidden or 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
main { max-width: 620px; margin: 0 auto;} | |
.video-wrapper{ | |
width: 100%; | |
padding-bottom: 66.667%; | |
background-color: blue; | |
position: relative; | |
} | |
amp-video video{ | |
width: auto; | |
object-fit: cover; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment