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"