Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

미디어가 일시 중지되었지만 HTML에서 재개될 것으로 예상되는 경우 스크립트를 실행하시겠습니까?


대기 속성은 비디오가 일시 중지되고 버퍼링되어 다시 시작될 때 트리거됩니다. 다음 코드를 실행하여 대기를 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <body>
      <h2 id = "test">Play</h2>
      <video id = "myid" width = "320" height = "176" controls onwaiting = "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 = "Media resumes again";
         }
      </script>
   </body>
</html>