5

我想在背景中有这样的图片

body{

    background-color: transparent !important;
    background-image: url("img.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px)


}

但也有一个模糊过滤器。

然而,当我把它放在 body 上时,除了背景图像之外的所有东西都模糊了。

有没有办法只在背景图像上应用模糊?(除了在 Photoshop 或类似软件中进行模糊处理。

4

1 回答 1

5

模糊适用于除主体以外的任何容器的背景图像。

filter: blur(20px)

演示在这里

https://jsfiddle.net/scheinercc/Yr2zD/1128/

于 2012-11-23T09:43:05.927 回答