Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะตั้งค่าระดับความทึบสำหรับองค์ประกอบด้วย JavaScript ได้อย่างไร


ใช้ ความทึบ คุณสมบัติใน JavaScript เพื่อกำหนดระดับความทึบ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อตั้งค่าระดับความทึบสำหรับองค์ประกอบด้วย 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>