当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Video height用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Video height Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。