如何使用 JavaScript 设置元素的不透明度级别?


使用 JavaScript 中的opacity 属性设置不透明度级别。你可以尝试运行以下代码以使用 JavaScript 设置元素的不透明度级别:

示例

实际演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 450px;
            background-color: gray;
         }
      </style>
   </head>
   <body>
      <p>Click below to set Opacity.</p>
      <button type="button" onclick="display()">Set Opacity</button>
      <div id="box">
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
      </div>
      <br>
      <script>
         function display() {
            document.getElementById("box").style.opacity = "0.5";
         }
      </script>
   </body>
</html>

更新日期: 23-Jun-2020

567 次浏览

开启职业 生涯

通过完成课程获得认证

开始
广告