784573-1-ref.html 562 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <!--
  3. Any copyright is dedicated to the Public Domain.
  4. http://creativecommons.org/licenses/publicdomain/
  5. -->
  6. <html>
  7. <head>
  8. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  9. </head>
  10. <body>
  11. <p><canvas width="100" height="100" id="c"></canvas></p>
  12. <script type="text/javascript">
  13. var c = document.getElementById('c').getContext('2d');
  14. c.shadowColor = '#f00';
  15. c.shadowBlur = 4;
  16. c.lineWidth = 2;
  17. c.moveTo(80, 40);
  18. c.lineTo(50, 70);
  19. c.lineTo(20, 40);
  20. c.lineTo(50, 10);
  21. c.closePath();
  22. c.stroke();
  23. </script>
  24. </body>
  25. </html>