3

我刚刚开始使用画布来获得这种效果:

“詹姆斯邦德枪管视图开始” 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 背景图像并绘制除圆圈之外的所有内容......但我真的不知道该怎么做:/。

4

1 回答 1

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

示例:http: //jsfiddle.net/drhWb/

保存、恢复和剪辑上下文是非常昂贵的操作,因此您应该使用这种方法是您需要采用的正确方法。

于 2012-08-18T08:50:04.730 回答