Last active
November 1, 2019 14:32
-
-
Save juliendkim/94a1207a383c7257228363c495415daf to your computer and use it in GitHub Desktop.
ATTRIBUTE : permit AUTOPLAY with MUTED / prevent fullscreen with PLAYSINLINE
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
<video autoplay loop muted playsinline> | |
<source src="video.mp4" type="video/mp4"> | |
<source src="video.webm" type="video/webm"> | |
<!-- legacy browser fallback --> | |
<img src="video.gif" alt="video"> | |
</video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment