gpt4 book ai didi

html - css 过滤器 : blur frosting glass effect not working, 没有模糊,内容受到影响

转载 作者:行者123 更新时间:2023-11-28 04:36:12 25 4
gpt4 key购买 nike

我想要一张背景照片,前面有一个 div。div 应具有模糊的深色背景和白色文本。

但它目前正在做的是:没有模糊的深色背景和深色文本。请帮助我!

#section0 {
background-color: lightgreen; /*normally the photo*/
}

.blurwrapper {
position: relative;
overflow: hidden;
}

.blur {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
filter: blur(1px);
opacity: 0.2;
transform: scale(1.5);
z-index: 1;
}

h1 {
color: white;
}
.about {
color: white;
background: none;
margin: auto;
margin-top: 20px;
max-width: 800px;
font-size: 15px;
padding: 20px;
text-align: center;
letter-spacing: 2px;
color: white;
border-top: 1px solid white;
z-index: 2;
}
<div class="section active" id="section0">
<div class="blurwrapper">
<h1><span>...</span></h1>
<p class="about">...</p>
<div class="blur"></div>
</div>
</div>

最佳答案

如您所见,模糊滤镜已应用于当前元素。这意味着如果您想模糊图像,您需要将模糊应用到设置了 background-image#section0 容器。如果您有颜色而不是图像,您只会看到模糊的边框。

有关更多信息,请查看文档。 https://developer.mozilla.org/en-US/docs/Web/CSS/filter

使用您的代码给出更清晰的示例:http://codepen.io/ThePeach/full/egYbbe/

关于html - css 过滤器 : blur frosting glass effect not working, 没有模糊,内容受到影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41460211/

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