5_canvas.html 606 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. #canv{
  9. background-color: black;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <canvas id="canv" width="400" height="400"></canvas>
  15. <script>
  16. var canv = document.querySelector('#canv');
  17. var ctx = canv.getContext('2d');
  18. ctx.strokeStyle = 'white';
  19. ctx.lineWidth = 5;
  20. ctx.moveTo(100,100);
  21. ctx.lineTo(200,200);
  22. ctx.stroke();
  23. </script>
  24. </body>
  25. </html>