HTML5 canvas beginPath() 方法

实例

色:

Your browser does not support the HTML5 canvas tag.

JavaScript:

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

ctx.beginPath();
ctx.lineWidth="5";
ctx.strokeStyle="red"; // 红色路径
ctx.moveTo(0,75);
ctx.lineTo(250,75);
ctx.stroke(); // 进行绘制

ctx.beginPath();
ctx.strokeStyle="blue"; // 蓝色路径
ctx.moveTo(50,0);
ctx.lineTo(150,130);
ctx.stroke(); // 进行绘制

Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 beginPath() 方法。

注释:Internet Explorer 8 <canvas> 元素。

beginPath() 路径。

提示:路径:moveTo()、lineTo()、quadricCurveTo()、bezierCurveTo()、arcTo() 以及 arc()。

提示:请使用 stroke() 的路径。

JavaScript 语法:

context.fillRect(x,y,width,height);