gpt4 book ai didi

html - 将阴影与背景过滤器一起使用 : blur

转载 作者:太空宇宙 更新时间:2023-11-04 06:59:29 29 4
gpt4 key购买 nike

我一直在试验 backdrop-filter最近,通常使用它来模糊元素后面的任何内容(这是动态的,所以 我不能只使用像 this 这样的东西)。但是,我还需要为所述元素应用阴影,所以我简单地添加了 box-shadow: /* something, not inset */。 .

不幸的是,结果,模糊效果扩展到了阴影覆盖的所有区域(这似乎合乎逻辑,因为它被称为背景滤镜)。您可以在下面看到它的演示(请注意,您需要一个支持 backdrop-filter 的浏览器,以防这不是很明显)。

#background {
position: absolute;

width: 600px;
height: 300px;
z-index: -1;

background-image: url('https://picsum.photos/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>

有没有办法应用与背景滤镜不冲突的阴影(冲突甚至是动词?)?如果有必要,我也可以使用 JavaScript(这就是为什么它在这篇文章的标签中)——当然,一个纯 CSS 的答案会更好。

编辑: 在 2020 年正常工作 🙃

最佳答案

您可能可以使用伪元素拥有两个不同的层。一层用于滤镜,另一层用于阴影:

#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>

关于html - 将阴影与背景过滤器一起使用 : blur,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52140378/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com