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

HTML DOM 비디오 사전 로드 속성


HTML DOM 비디오 사전 로드 속성은 제작자가 비디오 데이터를 로드해야 한다고 생각하는 시점에 해당하는 문자열을 반환합니다. 간혹 무시되기도 하지만 기본값은 '메타데이터'입니다.

구문

다음은 구문입니다 -

문자열 값 반환

mediaObject.preload

미리 로드 설정 문자열로

mediaObject.preload = “auto|metadata|none”

HTML DOM 동영상 미리 로드의 예를 살펴보겠습니다. 속성 -

예시

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video preload</title>
<style>
   * {
      padding: 2px;
      margin:5px;
   }
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-Video-preload</legend>
         <video id="demo" width="320" preload=”none” controls><source
         src="https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br>
         <input type="button" onclick="getTrackDetails()" value="Preload Video">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
   <script>
      var divDisplay = document.getElementById("divDisplay");
      var demo = document.getElementById("demo");
      divDisplay.textContent = 'Data Savings mode on. Play video to load it';
      function getTrackDetails() {
         demo.preload = 'metadata'
         divDisplay.textContent = 'Data Savings mode off. Preload enabled';
      }
   </script>
</body>
</html>

출력

'동영상 미리 로드'를 클릭하기 전에 버튼 -

HTML DOM 비디오 사전 로드 속성

'동영상 미리 로드를 클릭한 후 버튼 -

HTML DOM 비디오 사전 로드 속성