Last active
December 2, 2023 18:51
-
-
Save softiconic/8b88e1b8e8f4db6fe9f4eebc3744c1d0 to your computer and use it in GitHub Desktop.
Ensure HTML5 video compatibility across all devices.
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 class="scvideos3" autoplay loop muted playsInline width='100%' height='100%' preload="auto"> | |
| <source src="dd.webm" type="video/webm"> | |
| <source src="dd.mp4" type="video/mp4"> | |
| </video> | |
| //another example | |
| <video class="scvideo" preload="auto" loop="loop" muted="true" playsinline="true" autoplay="autoplay"> | |
| <source src="mpr.mp4" type="video/mp4"> | |
| </video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment