例
繪製路徑,成形為字母L,然後畫一條線回到起點:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20,20);
ctx.lineTo(20,100);
ctx.lineTo(70,100);
ctx.closePath();
ctx.stroke();
試一試» 瀏覽器支持
在表中的數字規定,完全支持方法的第一個瀏覽器版本。
方法 | |||||
---|---|---|---|---|---|
closePath() | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
所述closePath()方法創建從當前點回到起點的路徑。
Tip:使用stroke()方法以實際在畫布上繪製的路徑。
Tip:使用fill()方法來填充繪製(black is default) 。 使用的填充樣式屬性,以填補與另一種顏色/漸變。
JavaScript語法: | context 。 closePath() ; |
---|
更多示例
例
使用紅色作為填充顏色:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20,20);
ctx.lineTo(20,100);
ctx.lineTo(70,100);
ctx.closePath();
ctx.stroke();
ctx.fillStyle="red";
ctx.fill();
試一試» <畫布對象