无法使用HTML5视频标记在PhoneGap上播放视频

时间:2014-04-08 13:40:35

标签: html5 jquery-mobile cordova html5-video

我试图在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 &lt;video&gt; element.</i>
</video>

1 个答案:

答案 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;