例
開始的路徑,移動到另一個位置0,0。 創建一個行定位300150:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(0,0);
ctx.lineTo(300,150);
ctx.stroke();
試一試» 瀏覽器支持
在表中的數字規定,完全支持方法的第一個瀏覽器版本。
方法 | |||||
---|---|---|---|---|---|
lineTo() | 4 | 9 | 3.6 | 4 | 10.1 |
定義和用法
該lineTo()方法添加一個新的點,並創建一個從點到畫布的最後一個指定的點線(this method does not draw the line) 。
Tip:使用stroke()方法以實際在畫布上繪製的路徑。
JavaScript語法: | context 。 lineTo( x,y ) ; |
---|
參數值
參數 | 描述 | 播放 |
---|---|---|
x | 在哪裡創建行的x坐標 | 播放 ” |
y | 在哪裡創建行至y坐標 | 播放 ” |
更多示例
例
繪製路徑,成形為字母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.stroke();
試一試» <畫布對象