来源:自学PHP网 时间:2015-01-26 11:14 作者: 阅读:次
[导读] Video对象是HTML5中新增的一个对象,支持多种不同格式的视频在线播放,功能比较强大,Video对象可以通过ontimeupdate事件来报告当前的播放进度,下面为大家介绍下Video对象ontimeupdate事件的...
Video对象是HTML5中新增的一个对象,支持多种不同格式的视频在线播放,功能比较强大,Video对象可以通过ontimeupdate事件来报告当前的播放进度,下面为大家介绍下Video对象ontimeupdate事件的问题,感兴趣的朋友可以参考下哈
http://msdn.microsoft.com/en-us/library/windows/apps/hh465962.aspx http://www.w3school.com.cn/html5/tag_video.asp Video对象可以通过ontimeupdate事件来报告当前的播放进度,同时通过该事件还可以根据视频播放的情况来控制页面上的其它元素,例如随着视频播放的进度来切换章节、显示额外信息等。下面是一个例子: 复制代码 代码如下:<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <title></title> </head> <body> <script type="text/javascript"> function timeUpdate() { document.getElementById('time').innerHTML = video.currentTime; } function durationChange() { document.getElementById('duration').innerHTML = video.duration; } function seekVideo() { document.getElementById('video').currentTime = document.getElementById('seekText').value; } window.onload = function () { var videoPlayer = document.getElementById("video"); videoPlayer.ontimeupdate = function () { timeUpdate(); }; }; </script> <div> <video id="video" controls="controls" poster="./images/videoground1.png" src="./videoSource/video1.mp4" width="450px" height="320px" ondurationchange="durationChange()" /> </div> <div>Time: <span id="time">0</span> of <span id="duration">0</span> seconds.</div> <div> <input type="text" id="seekText" /> <input type="button" id="seekBtn" value="Seek Video" onclick="seekVideo();" /> </div> </body> </html> 当然你也可以像在页面上使用其它元素一样,给Video对象动态添加属性或者挂事件,如: 复制代码 代码如下:video.ontimeupdate = function () { getCurrentVideoPosition(); }; 不过上面这行代码貌似在Chrome上无效,可以使用addEventListener来代替它: 复制代码 代码如下:videoPlayer.addEventListener("timeupdate", function () { getCurrentVideoPosition(); }, false); 不知道是什么原因在Chrome上不能直接将ontimeupdate事件挂在Video元素上,而必须通过addEventListener方法来添加事件。不过addEventListener也兼容IE和Firefox浏览器,所以应该是通过的。 |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com