最新的Web開發教程
 

HTML canvas beginPath() Method

<HTML畫布參考

在畫布上畫兩條路徑; 一綠一紫:

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() 9

定義和用法

beginPath()方法開始的路徑,或重置當前路徑。

提示:使用moveTo(), lineTo(), quadricCurveTo(), bezierCurveTo(), arcTo()arc()來創建路徑。

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

JavaScript語法: context.beginPath();

<HTML畫布參考