Skip to content Skip to sidebar Skip to footer

Phonegap IOS HTML5 Video Opens Player

I am using Phonegap with a very simple landing page:

Solution 2:

It actually takes two things and it DOES work on the iPhone:

Add this to config.xml <preference name="AllowInlineMediaPlayback" value="true" />

And in the HTML you must include webkit-playsinline

<video webkit-playsinline playsinline autoplay muted loop><source src='vid/vid.mp4' type='video/mp4'></video>


Post a Comment for "Phonegap IOS HTML5 Video Opens Player"