1271058-1.html 690 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html><head>
  3. <style>
  4. .preserve {
  5. transform-style: preserve-3d;
  6. }
  7. .leaf {
  8. width: 300px;
  9. height: 300px;
  10. position:absolute;
  11. transform: translateZ(0px);
  12. background-color: red;
  13. top: -220px;
  14. left: -20px;
  15. }
  16. </style>
  17. </head><body>
  18. <canvas id="canvas" width="200" height="200"></canvas>
  19. <div class="preserve">
  20. <div class="preserve" style="opacity:0.0001">
  21. <div class="leaf"></div>
  22. </div>
  23. </div>
  24. </body>
  25. <script>
  26. var canvas = document.getElementById("canvas");
  27. var ctx = canvas.getContext("2d");
  28. ctx.fillStyle = "green";
  29. ctx.fillRect(0, 0, 200, 200);
  30. </script>
  31. </html>