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

临时文件

时间:2017-12-27 20:24:23      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:on()   rip   lap   head   tps   idt   query   height   width   

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>

<body>

<video
    id="video-active"
    class="video-active"
    width="640"
    height="390"
    controls="controls">
    <source src="video/test.mp4" type="video/mp4">
</video>
<div id="current">0:00</div>
<div id="duration">0:00</div>

<script>

$(document).ready(function(){
    var vid = document.getElementById("video-active");
    vid.playbackRate = 0.01;
  
  
  $("#video-active").on(
    "timeupdate", 
    function(event){
      onTrackedVideoFrame(this.currentTime, this.duration);
    });
})

function onTrackedVideoFrame(currentTime, duration)
{
    $("#current").text(currentTime);
    $("#duration").text(duration);
}

</script> 

</body>

</html>

  

临时文件

标签:on()   rip   lap   head   tps   idt   query   height   width   

原文地址:https://www.cnblogs.com/cxxjohnson/p/8127421.html

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