Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:51
Show Gist options
  • Save softiconic/8b88e1b8e8f4db6fe9f4eebc3744c1d0 to your computer and use it in GitHub Desktop.
Save softiconic/8b88e1b8e8f4db6fe9f4eebc3744c1d0 to your computer and use it in GitHub Desktop.
Ensure HTML5 video compatibility across all devices.
<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