What’s the best way to make a video auto-play on the page in a loop like so?
I don’t want to use youtube or any embeddable type solution, but simply an auto-play video on the page that’s really low file size. But an animated gif would be huge and not render very well.
Ah, that HTML5 spec is exactly what I needed. I got it working great (although not on mobile, unfortunately). I was assuming there was some way to do this with the native webflow widget. Thanks so much!
For anyone else looking to accomplish this, here’s the embed code I used to autoplay without any player controls and on loop:
<video width="100%" poster="placeholder.jpg" autoplay loop muted>
<source src="VIDEO_LINK_HERE.mp4" type="video/mp4">
<p>Your browser doesn't support HTML5 video. Here is
a <a href="VIDEO_LINK_HERE.mp4">link to the video</a> instead.</p>
</video>