Play)을 구현할 수 있습니다."/> Play)을 구현할 수 있습니다.">
ontimeupdate 속성 이벤트는 미디어(예: 비디오)의 재생 위치가 변경되면 트리거됩니다. 비디오나 오디오를 빨리 감거나 되감을 수 있습니다.
다음 코드를 실행하여 ontimeupdate 속성 -
<!DOCTYPE html> <html> <body> <h2 id="test">Play</h2> <video id = "myid" width="320" height = "176" controls ontimeupdate = "myFunction()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> <script> function myFunction() { document.getElementById("test").innerHTML = "Current position: " + document.getElementById("myid").currentTime; } </script> </body> </html>을 구현할 수 있습니다.
위 내용은 HTML에서 미디어의 재생 위치가 변경되면 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!