SVG或画布:填充/阴影2个圆圈的重叠区域

时间:2012-09-27 13:57:21

标签: html5 canvas svg

我试图找到一种方法来填充两个任意重叠的圆圈。

在该工具中,我处理用户可以创建圆圈并在屏幕上拖动它们。如果两个或多个圆重叠,则用户可以选择重叠区域(想想维恩图 - ish)。我需要用颜色或渐变填充重叠区域。

这是否可以在浏览器中使用SVG和/或Canvas?

1 个答案:

答案 0 :(得分:1)

我想出了办法:

  1. 我使用easeljs(html5 canvas)正常绘制2个圆圈
  2. 使用a在另一个容器中再次绘制2个圆圈 compositeOperation of“destination-in”
  3. 缓存容器(否则复合操作会吹走整个图像)
  4. 将缓存的容器添加到舞台
  5. 代码:

    var s1 = new createjs.Shape(), 
        s2 = new createjs.Shape(), 
        s3 = new createjs.Shape(),
        s4 = new createjs.Shape(),
        c1 = new createjs.Container(),
        c2 = new createjs.Container(),
        container = new createjs.Container();
    
    s1.graphics.ss(2).beginStroke("black").beginLinearGradientFill(["#f6f6f6","#e5e5e5"],[0,1],0,-40,0,40).drawCircle(0,0,40);
    s1.x = s1.y = 80;
    c1.addChild(s1);
    
    s2.graphics.ss(2).beginStroke("black").beginLinearGradientFill(["#f6f6f6","#e5e5e5"],[0,1],0,-40,0,40).drawCircle(0,0,40);
    s2.x = s2.y = 120;
    c1.addChild(s2);
    
    container.addChild(c1);         
    
    s3.graphics.ss(2).beginStroke("black").beginRadialGradientFill(["#FFF","#0FF"],[0,1],0,0,0,0,0,40).drawCircle(0,0,40);
    s3.x = s3.y = 80;
    c2.addChild(s3);
    
    s4.graphics.ss(2).beginStroke("black").beginLinearGradientFill(["#f6f6f6","#e5e5e5"],[0,1],0,-40,0,40).drawCircle(0,0,40);
    s4.x = s4.y = 120;
    s4.compositeOperation = "destination-in"
    c2.addChild(s4);
    c2.cache(0,0,220,220);
    
    container.addChild(c2);