我试图在PhoneGap上使用jQuery Mobile播放本地mp4格式的视频。在Android上播放视频,但除了白色屏幕外不显示任何内容。我尝试了几种不同的东西,但它们都没有用。
当我点击全屏按钮时,它会在原生播放器中播放。我想在点击全屏按钮之前显示视频。
我的video
代码:
<video id="html5_video" poster="" width="480" height="360" src="" autoplay>
<i>OOPS, Your Browser doesn't support the HTML5 <video> element.</i>
</video>
答案 0 :(得分:-4)
HTML代码:
<iframe id="playvideo" style="width:95%;height:95%"></iframe>
<强>的javascript:强>
var videoPath="http://www.yourvideo path here"
document.getElementById('playvideo').src = videoPath;