iPad 上的 jQuery Mobile:HTML5 视频在转换后继续播放
在第 1 页我必须
<video width="100%" src="spacetime.m4v" controls></video>
播放一个视频。这一切都工作得很好,但是,当用户按下链接到另一个文档的按钮时
<div data-role="footer" data-position="fixed">
<a href="twinparadox.php">Page 2</a>
</div>
,视频会继续播放,而我们可以顺利地过渡到另一个文档。
在这种情况下有没有办法停止视频?
On page 1 I have
<video width="100%" src="spacetime.m4v" controls></video>
to play a video. This all works nicely, however, when a user presses a button in the
<div data-role="footer" data-position="fixed">
<a href="twinparadox.php">Page 2</a>
</div>
which is linked to another document, the video keeps playing while we transition smoothly to this other document.
Is there a way to stop the video in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以挂钩 jqMobile 页面事件并以编程方式手动
.pause()
所有视频。You could hook into one of the jqMobile page events and manually
.pause()
all videos programatically.给视频一个 ID。然后...
$("a").click(function(){
$("#videoID").pause();
});
Give the video an ID. Then...
$("a").click(function(){
$("#videoID").pause();
});