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


HTML Style opacity用法及代碼示例


HTML DOM中的Style opacity屬性用於設置元素的不透明度級別。不透明度級別定義了透明度級別,其中值1表示不透明,值0.5表示50%透明度,0表示完全透明,它還返回元素的不透明度級別。

用法:

  • 它返回不透明度屬性。
    object.style.opacity
  • 它用於設置不透明度屬性。
    object.style.opacity = "number|initial|inherit"

屬性值:


  • number:它指定不透明度值,範圍為0.0到1.0。
  • intial:它將opacity屬性設置為其默認值。
  • inherit:此屬性從其父元素繼承。

返回值:它返回一個表示元素的不透明度級別的字符串。
示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style opacity Property </title> 
  
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM Style opacity Property </h2> 
        <div id="gfg"> A Computer science portal for geeks</div> 
  
        <button type="button" onclick="geeks()"> 
            set Decoration 
        </button> 
  
        <script> 
            function geeks() { 
                document.getElementById("gfg").style.opacity 
                                                      = "0.3"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>  

輸出:

  • 在單擊按鈕之前:

  • 單擊按鈕後:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style opacity Property </title> 
    <style> 
        #gfg { 
            width:150px; 
            height:40px; 
            background-color:green; 
        } 
    </style> 
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM Style opacity Property </h2> 
        <div id="gfg" style="color:white">  
        A Computer science portal for geeks</div> 
  
        <button type="button" onclick="geeks()"> 
            change opacity 
        </button> 
  
        <script> 
            function geeks() { 
                document.getElementById("gfg").style.opacity  
                                                       = "0"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Style opacity屬性支持的瀏覽器:

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


相關用法


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