例
繪製路徑,形狀為字母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() | 是 | 9 | 是 | 是 | 是 |
定義和用法
該closePath()方法創建從當前點回到起點的路徑。
提示:使用stroke()方法來實際繪製在畫布上的路徑。
提示:使用fill()方法來填充繪製(黑色是默認值)。使用fillStyle屬性,以填補與其他顏色/漸變。
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();
試一試»