您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關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怎么實現實時監測當前播放時間就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。