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


HTML DOM Image height屬性用法及代碼示例


HTML DOM Image height 屬性用於設置或返回 Image 元素的 height 屬性的值。 height 屬性用於以像素為單位指定圖像的高度。

用法:

它返回圖像高度屬性。

imageObject.height

它設置圖像高度屬性。



imageObject.height = pixels

屬性值:

  • pixels:它以像素為單位指定圖像元素的高度

返回值:它返回一個字符串值,以像素為單位表示圖像的高度。

範例1:此示例說明如何返回圖像高度屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
          
        <h2>HTML DOM Image Height Property</h2>
          
        <img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
            width="400" height="150" />
        <br>
  
        <button onclick="Geeks()">
            Click me!
        </button>
          
        <p id="sudo"></p>
  
    </center>
  
    <script>
        function Geeks() {
            var g = document.getElementById("GFG").height;
              
            document.getElementById("sudo")
                    .innerHTML = g + "px";
        }
    </script>
</body>
  
</html>

輸出:

範例2:下麵的代碼設置圖像高度屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
          
        <h2>HTML DOM Image Height Property</h2>
          
        <img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
            width="400" height="150" />
        <br>
  
        <button onclick="Geeks()">
            Click me!
        </button>
          
        <p id="sudo"></p>
  
    </center>
  
    <script>
        function Geeks() {
            var g = document.getElementById(
                    "GFG").height = "75";
  
            document.getElementById("sudo")
                    .innerHTML = g + "px";
        }
    </script>
</body>
  
</html>

輸出:

支持的瀏覽器:

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



相關用法


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