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

JavaScript에서 HTML5 비디오 전체 사전 로드


oncanplaythrough 이벤트를 사용하여 비디오를 완전히 미리 로드합니다. 다음 코드를 실행할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <body>
      <video id="myVideo" width="400" height="200" controls oncanplaythrough="display()">
         <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 display() {
            alert("Can be played without pausing for buffering.");
        }
</script>
</body>
</html>