我想像这样在背景中有一张照片
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)
}
但也有一个模糊过滤器。
然而,当我把它放在身体上时,除了背景图像之外,所有东西都会模糊。
有没有办法只在背景图像上应用模糊? (除了在Photoshop或类似的模糊中做模糊。
答案 0 :(得分:5)