视频

2016-12-19  本文已影响0人  智多牛
    <body>  
    
        <!-- 视频 -->
        <video id="video" src="http://www.w3school.com.cn/i/movie.ogg" controls webkit-playsinline playsinline></video>
        
    </body>
    
    <script>
        
        var video = document.getElementById('video');
        
        
        /**
         * 播放
         */
        video.addEventListener('timeupdate',function(e){
            
            console.log('播放进度:'+video.currentTime/video.duration)
            
        })
        
        
        /**
         * 结束
         */
        video.addEventListener('ended',function(e){
            
            console.log('播放结束')
            
        })
        
        
        /**
         * 错误
         */
        video.addEventListener('error',function(e){
            
            console.log('播放错误')
            
        })
        
    </script>
上一篇下一篇

猜你喜欢

热点阅读