最新的Web開發教程
 

HTML canvas beginPath() Method

<畫布對象

在畫布上繪製兩條路徑; 綠色和紫色:

YourbrowserdoesnotsupporttheHTML5canvastag。

JavaScript的:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.beginPath();
ctx.lineWidth="5";
ctx.strokeStyle="green"; // Green path
ctx.moveTo(0,75);
ctx.lineTo(250,75);
ctx.stroke(); // Draw it

ctx.beginPath();
ctx.strokeStyle="purple"; // Purple path
ctx.moveTo(50,0);
ctx.lineTo(150,130);
ctx.stroke(); // Draw it
試一試»

瀏覽器支持

在表中的數字規定,完全支持方法的第一個瀏覽器版本。

方法
beginPath() 4 9 3.6 4 10.1

定義和用法

所述beginPath()方法開始的路徑,或者重置電流路徑。

Tip:使用moveTo() lineTo() quadricCurveTo() bezierCurveTo() arcTo()arc()創建路徑。

Tip:使用stroke()方法以實際在畫布上繪製的路徑。

JavaScript語法: contextbeginPath() ;

<畫布對象