726951-shadow-clips.html 405 B

12345678910111213141516171819
  1. <!doctype html>
  2. <head>
  3. <body>
  4. <canvas id="mycanvas" width="200" height="600"></canvas>
  5. <script type="text/javascript">
  6. var cx = document.getElementById('mycanvas').getContext('2d');
  7. cx.beginPath();
  8. cx.rect(10, 10, 50, 50);
  9. cx.clip();
  10. cx.beginPath();
  11. cx.rect(0, 0, 50, 50);
  12. cx.shadowColor = "black";
  13. cx.shadowOffsetX = 10;
  14. cx.shadowOffsetY = 10;
  15. cx.fill();
  16. </script>