basic-shadow-1.html 610 B

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <script>
  5. function tweak() {
  6. // div with style "width:300px; height:100px; background-color:green"
  7. var shadowDiv = document.createElement("div");
  8. shadowDiv.style.width = "300px";
  9. shadowDiv.style.height = "100px";
  10. shadowDiv.style.backgroundColor = "green";
  11. var shadowRoot = document.getElementById('outer').attachShadow({mode: 'open'});
  12. shadowRoot.appendChild(shadowDiv);
  13. }
  14. </script>
  15. </head>
  16. <body onload="tweak()">
  17. <div id="outer">
  18. <div style="width:300px; height:100px; background-color:red;"></div>
  19. </div>
  20. </body>
  21. </html>