Webview Video PlaysInline

I have a webview on several of my app screens. The webview is linked to a blank Wordpress page on my site with just this HTML:

<video width="100%" playsinline="true" webkit-playsinline autoplay="true" muted="true" loop="true">
 <source src="coolvideoURL.mp4" type="video/mp4">
<p>Your browser does not support the video element.</p>
</video>

What I want to happen is for these MP4s to play and loop like GIFs (in fact they are GIFs converted to MP4 for file size benefits). However, the videos still play fullscreen automatically. I also want to remove all the controls. I’ve tried using Plyr and couldn’t get it to work for me.

Edit: I also wanted to add that if anyone here knows of CSS code I could add to my webpage or Wordpress site, I can definitely do that as well.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.