我想在背景中有这样的图片
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 或类似软件中进行模糊处理。