Video height屬性用於設置或返回視頻的height屬性的值。視頻高度屬性以像素為單位返回視頻的高度。
用法:
- 返回height屬性:
videoObject.height
- 設置height屬性:
videoObject.height = pixels
屬性值:
-
像素:用於指定視頻的高度。
以下示例程序旨在說明視頻高度屬性:
例:更改視頻的高度。
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Video height Property</h2>
<br>
<video id="Test_Video"
width="360"
height="240"
controls>
<source src="samplevideo.mp4"
type="video/mp4">
<source src="movie.ogg"
type="video/ogg">
</video>
<p>
For changing the height of the video,
double click the "Change Height" button.
</p>
<button ondblclick="My_Video()"
type="button">
Change Height
</button>
<p id="test"></p>
<script>
function My_Video() {
document.getElementById(
"Test_Video").height = "400";
}
</script>
</body>
</html>
輸出:
單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML <video> height屬性用法及代碼示例
- HTML <video> height屬性用法及代碼示例
- HTML embed height用法及代碼示例
- HTML Style height用法及代碼示例
- HTML IFrame height用法及代碼示例
- HTML Screen height用法及代碼示例
- HTML Object Height用法及代碼示例
- HTML input image height用法及代碼示例
- HTML Video src用法及代碼示例
- HTML Video textTracks用法及代碼示例
- HTML Video seekable用法及代碼示例
- HTML Video loop用法及代碼示例
- HTML Video poster用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Video height Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。