例
創建在畫布上兩條切線之間的電弧:
JavaScript的:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20,20);
// Create a starting point
ctx.lineTo(100,20); //
Create a horizontal line
ctx.arcTo(150,20,150,70,50); // Create an arc
ctx.lineTo(150,120); //
Continue with vertical line
ctx.stroke();
// Draw it
試一試» 瀏覽器支持
在表中的數字規定,完全支持方法的第一個瀏覽器版本。
方法 | |||||
---|---|---|---|---|---|
arcTo() | 4 | 9 | 3.6 | 4 | 不支持 |
定義和用法
所述arcTo()方法創建畫布上兩條切線之間的電弧/曲線。
Tip:使用stroke()方法以實際在畫布上畫弧。
JavaScript語法: | context 。 arcTo( x1,y1,x2,y2,r ) ; |
---|
參數值
參數 | 描述 | 播放 |
---|---|---|
x1 | 圓弧的起點的x坐標 | 播放 ” |
y1 | 圓弧的起點的y坐標 | 播放 ” |
x2 | 圓弧結束的x坐標 | 播放 ” |
y2 | 圓弧結束的y坐標 | 播放 ” |
r | 圓弧的半徑 | 播放 ” |
<畫布對象