html5 video获取实时播放进度的方法
时间:2019-11-17 10:13:39
收藏:0
阅读:673
getvideoprogress();
function getvideoprogress() {
setTimeout(function () {
var vid = document.getElementById("video1");
var currentTime=vid.currentTime.toFixed(1);
if(currentTime==1.2){
//触发
return false;
}
console.log(currentTime);
getvideoprogress();
}, 50);
}
原文:https://www.cnblogs.com/newmiracle/p/11875160.html
评论(0)