文章列表
html5 canvas beginPath()
- 博客分类:
- 转载
我们都知道beginPath() ,创建路径的第一步便是是调用beginPath方法,返回一个存储路径的信息,注意这只是信息,并没有实质的在画布上做什么。
考虑一下代码
ctx.beginPath();
ctx.moveTo(200,200);
ctx.lineTo(200,400);
ctx.strokeStyle = “red”;
//———–下面2行保留不同效果不同————//
ctx.stroke();
ctx.beginPath();
//———–开启新路径————-//
ctx.moveTo(300,200);
ctx.lineTo(300,400);
ctx.strokeSty ...