HTML canvas arcTo() 方法
實(shí)例
在畫布上創(chuàng)建介于兩個(gè)切線之間的?。?/p>
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
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
嘗試一下 ?
瀏覽器支持
Internet Explorer 9、Firefox、Chrome 和 Safari 支持 arcTo()方法。
注意:Opera 不支持arcTo() 方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定義和用法
arcTo() 方法在畫布上創(chuàng)建介于兩個(gè)切線之間的弧/曲線。
提示:請(qǐng)使用 stroke() 方法在畫布上繪制確切的弧。
JavaScript 語法: | context.arcTo(x1,y1,x2,y2,r); |
---|
參數(shù)值
參數(shù) | 描述 |
---|---|
x1 | 弧的起點(diǎn)的 x 坐標(biāo)。 |
y1 | 弧的起點(diǎn)的 y 坐標(biāo)。 |
x2 | 弧的終點(diǎn)的 x 坐標(biāo)。 |
y2 | 弧的終點(diǎn)的 y 坐標(biāo)。 |
r | 弧的半徑。 |
更多建議: