标签:strong event update src this time pre ram eof
html:
<video id="video-active" class="video-active" width="640" height="390" controls="controls"> <source src="myvideo.mp4" type="video/mp4"> </video> <div id="current">0:00</div> <div id="duration">0:00</div>
js:
$(document).ready(function(){
$("#video-active").on(
"timeupdate",
function(event){
onTrackedVideoFrame(this.currentTime, this.duration);
});
}
function onTrackedVideoFrame(currentTime, duration){
$("#current").text(currentTime);
$("#duration").text(duration);
}
标签:strong event update src this time pre ram eof
原文地址:https://www.cnblogs.com/xiaozhangzhang/p/9842686.html