이 글에서는 HTML5 영상의 현재 재생 시간(코드)을 실시간으로 모니터링하는 방법을 소개합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다. .
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 비디오에서 현재 재생 시간의 실시간 모니터링을 구현하는 방법(코드)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!