我刚开始使用canvas来获得这种效果:
“James Bond Gunbarrel查看开始” http://www.youtube.com/watch?v=sfXazFp68cE
我设法几乎到了那里:
http://jsbin.com/uyaker/8/edit
现在你可以看到我用两个圆圈剪辑我的画布(至少我试着)......但问题是重叠的区域不再被剪裁了......
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.save();
ctx.beginPath();
ctx.moveTo(0, 0);
ctx.lineTo(canvas.width, 0);
ctx.lineTo(canvas.width, canvas.height);
ctx.lineTo(0, canvas.height);
ctx.closePath();
ctx.moveTo(cx + r, cy);
ctx.arc(cx, cy, r, 0, Math.PI*2, true);
// check if to draw a fixed circle, every 200 pixels for 100 pixels
if(goingright && cx % 200 < 100) {
ctx.moveTo(cx - cx % 200 + r, cy);
ctx.arc(cx - cx % 200, cy, r, 0, Math.PI*2, true);
}
ctx.closePath();
ctx.clip();
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.restore();
也许这种效果可以不使用剪辑但是给画布一个css背景图像并绘制除圆圈之外的所有内容......但我真的不知道如何做到这一点:/。
答案 0 :(得分:2)
Maybe this effect is possible without using clipping ... but I don't really know how to do that
是的,有可能,您需要创建一个可以完成所有工作的路径:
context.beginPath();
context.moveTo(x, y);
// Draw your big shape, in your case is a rectangle (4 point)
context.lineTo(xn, yn);
context.closePath();
// Now the context knows that every path that will be added without .beginPath(), will clip the current path
context.arc(cx, cy, r, 0, Math.PI * 2, true);
context.closePath();
context.fill(); // Fill with color all the area except the arc
保存,恢复和剪切上下文是非常昂贵的操作,因此您应该使用这种方法,这是您需要的正确方法。