Computer >> Máy Tính >  >> Lập trình >> HTML

Thuộc tính chiều cao video DOM HTML


Thuộc tính HTML DOM Video height trả về / đặt một số tương ứng với chiều cao (tính bằng pixel) của phương tiện.

Cú pháp

Sau đây là cú pháp -

Trả lại chiều cao dưới dạng một số (px)

mediaObject.height

Đặt chiều cao thành một số (px)

mediaObject.height = number

Hãy để chúng tôi xem ví dụ về Chiều cao video tài sản -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video height</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-height</legend>
         <video id="demo" width="320" height="50" controls><source    src="https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br>
         <input type="button" onclick="getTrackDetails()" value="Video Not Visible">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var demo = document.getElementById("demo");
   function getTrackDetails() {
      demo.height += 50;
      divDisplay.textContent = 'Video height: '+demo.height;
   }
</script>
</body>
</html>

Đầu ra

Trước khi nhấp vào ‘Video không hiển thị’ nút -

Thuộc tính chiều cao video DOM HTML

Nhấp vào ‘Video không hiển thị’ nút 3 lần -

Thuộc tính chiều cao video DOM HTML