我最近一直在尝试使用backdrop-filter
,通常使用它来模糊元素背后的任何东西(这是动态的,所以我不能只使用像this这样的东西)。但是,我还需要对所述元素应用阴影,所以我只是添加了box-shadow: /* something, not inset */
。
不幸的是,结果,模糊效果被扩展到阴影所覆盖的所有区域(这似乎是合乎逻辑的,因为它被称为背景滤波器)。你可以在下面看到它的演示(注意你需要一个支持backdrop-filter
的浏览器,如果还不是很明显的话)。
#background {
position: absolute;
width: 600px;
height: 300px;
z-index: -1;
background-image: url('https://lorempixel.com/600/300/');
background-repeat: no-repeat;
}
#blurryandshadowy {
display: inline-block;
margin: 50px;
padding: 50px;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(15px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
<div id="background"></div>
<div id="blurryandshadowy">
. . .
<br>. . .
</div>
有没有办法将背景滤镜应用不冲突的影子(甚至是动词冲突?)?
P.S。:我知道backdrop-filter
仍然是一种实验性技术,所有这些都可能在未来发生变化
P.P.S. (代表post-post-scriptum):如果有必要,我也可以使用JavaScript,因此它在这个帖子的标签内
P.P.P.S。:当然,我更感谢CSS的答案
你可以使用伪元素有两个不同的层。一个用于过滤器,另一个用于阴影:
#background {
position: absolute;
width: 600px;
height: 300px;
z-index: -1;
background-image: url('https://lorempixel.com/600/300/');
background-repeat: no-repeat;
}
#blurryandshadowy {
display: inline-block;
margin: 50px;
padding: 50px;
position: relative;
z-index: 0;
}
#blurryandshadowy:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
z-index: 1;
}
#blurryandshadowy:after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
<div id="background"></div>
<div id="blurryandshadowy">
. . .
<br>. . .
</div>