■ canvas 엘리먼트에서 삼각형을 그리는 방법을 보여준다.
▶ test.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script language="javascript"> function onLoad() { var canvas = document.getElementById('canvas'); var context = canvas.getContext('2d'); context.beginPath(); context.moveTo(canvas.width / 2, 0); context.lineTo(0, canvas.height); context.lineTo(canvas.width, canvas.height); context.closePath(); context.strokeStyle = 'red'; context.stroke(); context.beginPath(); context.moveTo(canvas.width / 2, 100); context.lineTo(100, canvas.height - 100); context.lineTo(canvas.width - 100, canvas.height - 100); context.closePath(); context.fillStyle = 'blue'; context.fill(); } </script> </head> <body onload="onLoad();"> <canvas id="canvas" width="400" height="400" /> </body> </html> |