backdrop-animate-002-ref.html (255B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <dialog id="target">Dialog contents</dialog> 4 <style> 5 #target::backdrop { 6 opacity: 0.1; 7 background-color: green; 8 } 9 </style> 10 <script> 11 const target = document.getElementById("target"); 12 target.showModal(); 13 </script>