我需要使用CSS混合2个元素的背景颜色
我一直在使用background-blend-mode:multiply
摆弄,但只有当我在同一元素中有2种颜色时才有效。
我需要实现这样的目标 -
我一直在搜索,但一直无法弄清楚。 我找到的最有用的资源是New blending features in CSS,它展示了如何使用Canvas进行操作。 是否可以使用CSS做同样的事情?
修改
上面的圈子只是展示我需要的一个例子。正如我所提到的,我正在寻找两种不同元素的混合颜色。我为我的实际形状创造了一个小提琴,我需要混合。 http://jsfiddle.net/fmgfsr4o/2/
答案 0 :(得分:1)
试试这个纯CSS3,不过你需要弄清楚如何定位圆圈。
html {
height: 100%;
background:
repeating-radial-gradient(
circle,
transparent,
transparent 3.5em,
tomato 1em,
tomato 4.5em
),
repeating-radial-gradient(
circle,
transparent,
transparent 3.5em,
dodgerblue 3.5em,
dodgerblue 4.5em
);
background-blend-mode: multiply;
background-size: 10em 10em;
background-position:
0 0,
5em 5em,
10em 5em;
}
答案 1 :(得分:1)
您可以将CSS多重背景与径向渐变结合使用以实现此效果:
CSS
div {
/* adjust the width of the container to adjust circle's
overlap size and shape */
width: 80px;
height: 50px;
/* for debug purpose only */
border: solid blue 1px;
background:
/* draw the red circle */
radial-gradient(red 0%, red 70%, transparent 70%, transparent 100%) 0 0,
/* draw the green circle */
radial-gradient(green 0%, green 70%, transparent 70%, transparent 100%) 0 0;
/* the red on the left, the green on the right */
background-position: top left, top right;
/* you can make then bigger or smaller */
/* but you have to change width size above too */
background-size: 50px 50px;
/* You want both circles to appears once only */
background-repeat: no-repeat;
/* you can try with other values too */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/background-blend-mode */
background-blend-mode: multiply;
}
HTML
<div></div>
我已经为你做了一个JSFiddle:http://jsfiddle.net/pomeh/07nLpwwj/
这是我使用Firefox 31的结果:
即使浏览器支持看起来“正确”(请参阅此处http://caniuse.com/#feat=css-backgroundblendmode),请注意background-blend-mode
属性目前具有候选推荐状态,因此使用时要小心(感谢@ Paulie_D指出了这一点。