lineto_a.html (492B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <link rel=match href=lineto_ref.html> 4 <style> 5 html, body { 6 margin: 0; 7 padding: 0; 8 } 9 </style> 10 <canvas id="c" width="150" height="150" > 11 Your browser does not support the HTML5 canvas tag.</canvas> 12 13 <script> 14 var c = document.getElementById("c"); 15 var ctx = c.getContext("2d"); 16 17 ctx.beginPath(); 18 ctx.moveTo(20, 20); 19 ctx.lineTo(20, 130); 20 ctx.lineTo(130, 130); 21 ctx.lineTo(130, 20); 22 ctx.closePath(); 23 24 ctx.fillStyle = '#90EE90'; 25 ctx.fill(); 26 </script>