Video - play for mobile

0 votes
23 views
added Apr 16 in HTML by lcjr Lieutenant (12,240 points)
<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.

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...