码迷,mamicode.com
首页 > 其他好文 > 详细

VIDEO当前视频的总长度和视频进度

时间:2017-11-29 19:41:04      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:ide   video   rac   pre   .text   his   this   frame   current   

<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);
}

VIDEO当前视频的总长度和视频进度

标签:ide   video   rac   pre   .text   his   this   frame   current   

原文地址:http://www.cnblogs.com/123456puke/p/7922076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!