HTML canvas beginPath() 方法
Canvas 对象的 beginPath() 方法开始一条路径,或重置当前的路径
可以使用这些方法来创建路径 moveTo()、lineTo()、quadricCurveTo()、bezierCurveTo()、arcTo() 和 arc()
可以使用 stroke() 方法在画布上绘制确切的路径
语法
context.beginPath()
浏览器支持
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 beginPath() 方法
Internet Explorer 8 及之前的版本不支持 <canvas> 元素
范例
在画布上绘制两条路径;绿色和紫色
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