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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。