690643-1.html (472B)
1 <html> 2 <head> 3 </head> 4 <body> 5 <canvas id="canvas" width="300" height="300"></canvas> 6 <script type="application/javascript"> 7 var canvas = document.getElementById("canvas"); 8 var ctx = canvas.getContext("2d"); 9 10 ctx.fillStyle = '#eeeeee'; 11 ctx.strokeStyle = '#000000'; 12 13 ctx.beginPath(); 14 ctx.moveTo(0, 50); 15 ctx.lineTo(50, 50); 16 17 ctx.translate(100, 100); 18 ctx.lineTo(50, 0); 19 20 ctx.stroke(); 21 ctx.fill(); 22 </script> 23 </body> 24 </html>