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

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


Thuộc tính HTML DOM Video width trả về / đặt một số tương ứng với chiều rộng (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 rộng dưới dạng một số (px)

mediaObject.width

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

mediaObject.width = number

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

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video width</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-width</legend>
         <video id="demo" height="200" width="170" 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.width += 50;
         divDisplay.textContent = 'Video width: '+demo.width;
      }
   </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 rộng video HTML DOM

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

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