HTML canvas beginPath() 方法
Canvas 对象
实例
在画布上绘制两条路径;绿色和紫色:
YourbrowserdoesnotsupporttheHTML5canvastag.
var c=document.getElementById(“myCanvas”);
var canvOK=1;
try {c.getContext(“2d”);}
catch (er) {canvOK=0;}
if (canvOK==1)
{
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
}
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
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 beginPath()
方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
定义和用法
beginPath() 方法开始一条路径,或重置当前的路径。
提示:请使用这些方法来创建路径 moveTo()、lineTo()、quadricCurveTo()、bezierCurveTo()、arcTo() 和 arc()。
提示:请使用 stroke() 方法在画布上绘制确切的路径。
JavaScript 语法: | context.beginPath(); |
---|
Canvas 对象