當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Video width用法及代碼示例


視頻寬度屬性用於設置或返回視頻的寬度屬性的值。 width屬性用於指定視頻播放器的寬度(以像素為單位)。視頻寬度屬性返回一個數字,代表視頻寬度。

用法:
返回width屬性:

videoObject.width

設置width屬性:


videoObject.width = pixels

屬性值

  • pixels:用於指定視頻播放器的寬度(以像素為單位)

以下示例程序旨在說明視頻寬度屬性:
例:更改視頻播放器的寬度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Video width Property 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2 style="font-family:Impact"> 
      Video width Property 
  </h2> 
    <br> 
  
    <video id="Test_Video" width="360"
           height="240" controls> 
        <source src="sample2.mp4" type="video/mp4"> 
        <source src="sample2.ogg" type="video/ogg"> 
    </video> 
  
    <p>To change the width of the video, 
      double click the "Change Width" button.</p> 
    <br> 
  
    <button ondblclick="My_Video()">Change Width 
  </button> 
  
    <script> 
        function My_Video() { 
            document.getElementById( 
              "Test_Video").width = "600"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

  • 蘋果Safari
  • IE瀏覽器
  • Firefox
  • 穀歌瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Video width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。