690643-1-ref.html (445B)
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 ctx.lineTo(150, 100); 17 18 ctx.stroke(); 19 ctx.fill(); 20 </script> 21 </body> 22 </html>