gpt4 book ai didi

css - 仅模糊背景图像

转载 作者:行者123 更新时间:2023-12-02 07:37:42 24 4
gpt4 key购买 nike

如您所见,链接中给出的页面顶部有两张图片,一张是背景图片,一张是上面的图片,两张图片都是模糊的,我只想模糊背景图片不是最上面的一个,我不知道该怎么做,请帮助这里是链接 http://www.node.au.com/projects/at38/

这是我的CSS

 #work-gallery 
{
background-repeat:no-repeat;
background-size:cover;
-webkit-filter: blur(5px);
}

这是我不想模糊的顶部图像的 html

 <div id="slideshow" style="margin-top: 17.5px;"> 
<ul id="fdgSlides" style="width: 1275px; height: 425px; left: 0px;">
<li class="fdgSlide" style="width: 1275px;">
<img src="node.au.com/wp-content/uploads/thumb_at38_01.jpg"; alt="" style="width: auto; height: 100%; margin-top: -212.5px;">
</li>
</ul>
</div>

最佳答案

制作一个单独的背景元素:

HTML:

<div id="gallery-background"></div>

CSS:

#gallery-background {
position: absolute;

top: 0;
left: 0;
bottom: 0;
right: 0;

background-image: url(http://www.node.au.com/wp-content/uploads/thumb_at38_01-450x300.jpg);
background-repeat:no-repeat;
background-size:cover;
-webkit-filter: blur(5px);
}

-webkit-filter 会影响您应用它的元素的子元素,因此您必须将背景移出。

关于css - 仅模糊背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14719253/

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