混合div的背景

时间:2014-06-24 12:57:22

标签: html5 css3 background photoshop color-blending

我想要这样的背景混合效果,如附带的截图。 我已经使用过rgba背景,但这看起来不像我的设计。

这是我使用的图像和代码。

我尝试使用不同的背景图片和css3元素,但它无法正常工作。

这可以使用任何jquery吗?

enter image description here

.green_band {background: rgba(24, 95, 14, 0.5);}

2 个答案:

答案 0 :(得分:2)

不,此时(2014年夏季)您只能使用Alpha透明度伪造(例如使用rgba)。

CSS混合模式将会出现,但“这是一项即将推出的技术,在撰写本文时,浏览器支持尚不完整”。

请参阅“Getting to know CSS Blend Modes”了解简介和the browser support tables for background-blend-mode

使用即将推出的CSS混合模式属性:

background-color: rgb(24, 95, 14);
background-blend-mode: multiply;

以下是W3C Editor’s Draft: Compositing and Blending Level 1

答案 1 :(得分:0)

我不确定是否可以在Photoshop之外使用混合模式,除非您想要编写WebGL着色器。