1. 程式人生 > >html5 video獲取實時播放進度的方法

html5 video獲取實時播放進度的方法

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

檢視原文:
http://newmiracle.cn/?p=609