<video autoplay muted loop playsinline class="position_locked">
<source src="/folder/yourvideo.mp4" type="video/mp4">
</video>
Why it works:
-
✅ autoplay
: Tells the browser to start playing automatically.
-
✅ muted
: Required for autoplay to work on most mobile browsers.
-
✅ playsinline
: Prevents full-screen takeover on iOS (critical for inline autoplay).
-
✅ loop
: Keeps it running continuously.