我用这个是否可以使用 -webkit-filter: blur(); 在背景图像上?使背景图像模糊的解决方案,效果很好!但我想制作一些<div>
背景并使其模糊。所以背景应该是清晰和模糊的<div>
。如果我在该 div 上移动模糊滤镜,它会变得模糊,但背景图像仍然清晰。
HTML 很简单:
<body>
<div class = "background"></div>
<div class = "content"></div>
</body>
CSS是:
.content{
width: 70%;
height: 70%;
border:2px solid;
border-radius:20px;
position: fixed;
top: 15%;
left: 15%;
z-index:10;
background-color: rgba(168, 235, 255, 0.2);
filter: blur(2px);
-webkit-filter: blur(2px);
-moz-filter: blur(2px);
-o-filter: blur(2px);
-ms-filter: blur(2px);
}
.background{
width:100%;
height:100%;
background-image:url('http://www.travel.com.hk/region/time_95.jpg');
z-index:0;
position:absolute;
}
这是示例http://jsfiddle.net/photolan/8gVGR/
所以我只需要使用 CSS 来模糊内容 div 下的背景。