視頻寬度屬性用於設置或返回視頻的寬度屬性的值。 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
相關用法
- HTML HR width用法及代碼示例
- HTML Object width用法及代碼示例
- HTML Style width用法及代碼示例
- HTML Screen width用法及代碼示例
- HTML IFrame width用法及代碼示例
- HTML Table width用法及代碼示例
- HTML embed width用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Video src用法及代碼示例
- HTML Video played用法及代碼示例
- HTML Video networkState用法及代碼示例
- HTML Video paused用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Video width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。