123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- canvas{
- background-color: #000;
-
- }
- </style>
- </head>
- <body>
- <canvas id="canv" width="400" height="400"></canvas>
- <script>
- var oCan = document.getElementById("canv");
- var can = oCan.getContext("2d");
- can.strokeStyle="white";
- can.lineWidth = 3;
- can.moveTo(10,10);
- can.lineTo(200,200);
- can.lineTo(100,300);
- can.stroke();
- </script>
- </body>
- </html>
|