这篇文章给大家分享的是有关html5 video怎么实现实时监测当前播放时间的内容。小编觉得挺实用的,因此分享给大家做个参考。一起跟随小编过来看看吧。
html:
<video id="video" controls autoplay="autoplay" muted>
<source src="" type="video/mp4" />
Your browser does not support the video tag.
</video>
js:
//监听播放时间
var video = document.getElementById('video');
//使用事件监听方式捕捉事件
video.addEventListener("timeupdate",function(){
var timeDisplay;
//用秒数来显示当前播放进度
timeDisplay = Math.floor(video.currentTime);
console.log(Math.floor(video.currentTime))
//当视频播放到 4s的时候做处理
if(timeDisplay == 4){
//处理代码
}
},false);
感谢各位的阅读!关于html5 video怎么实现实时监测当前播放时间就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!