How to set video play inline in a rectangle?

Here's the manual way to do this:

     <video id="swimming" controls="false" autoplay loop muted playsinline style="width: 100%; height: 100%; position:left">
        <source src="https://www.lovcour.com/wp-content/uploads/sites/2/2018/12/swimming.iphone5.mp4" type="video/mp4">
        Your browser does not support the video tag.
        </video>

Note that the video needs to be muted for it to autoplay on a mobile device.

1 Like