【发布时间】:2011-12-31 17:34:29
【问题描述】:
我正在尝试让视频在视频结束时退出全屏,但它不会。我搜索并找到了方法来做到这一点,但对于我的生活,我无法让它发挥作用。我正在 iPad2 上测试最新版本的 Chrome (15) 和 iOS 5。 这是我正在使用的代码:
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script>
$(document).ready(function(){
$("#myVideoTag").on('ended', function(){
webkitExitFullScreen();
});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>854x480</title>
</head>
<body>
<video width="854" height="480"
src="video/854x480-Template_1.mp4"
poster="images/poster.jpg"
id="myVideoTag"
type="video/mp4"
preload="auto"
autobuffer
controls>
<p>Requires HTML5 capable browser.</p>
</video>
</body>
</html>
任何帮助将不胜感激。
【问题讨论】:
标签: jquery ipad fullscreen html5-video exit