คุณสมบัติความทึบของสไตล์ DOM ส่งคืนและแก้ไขค่าของคุณสมบัติ CSS ความทึบขององค์ประกอบในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
1. คืนความทึบ
object.style.opacity
-
แก้ไขความทึบ
object.style.opacity = “value”
ตัวอย่าง
ให้เรามาดูตัวอย่างคุณสมบัติความทึบของสไตล์ −
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { background: #1f13db; height: 50px; width: 100%; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style opacity Property Example</h1> <p></p> <button onclick="add()" class="btn">Add opacity</button> <script> function add() { document.querySelector('p').style.opacity = "0.2"; } </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
คลิกที่ “เพิ่มความทึบ ” เพื่อเพิ่มคุณสมบัติความทึบ -