我使用这个Is it possible to use -webkit-filter: blur(); on background-image?解决方案来制作模糊的背景图像,效果很好!但我想在背景上制作一些<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下的背景。
答案 0 :(得分:10)
如果它必须是动态的,你应该遇到一些麻烦,但是你可以从某个地方开始:
<强> HTML 强>
<div class="background"></div>
<div class="mask">
<div class="bluredBackground"></div>
</div>
<div class="content"></div>
<强> 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);
}
.background {
width:100%;
height:100%;
background-image:url('http://www.travel.com.hk/region/time_95.jpg');
z-index:2;
position:fixed;
}
.bluredBackground {
width:100%;
height:100%;
display:block;
background-image:url('http://www.travel.com.hk/region/time_95.jpg');
z-index:1;
position:absolute;
top:-20%;
left:-20%;
padding-left:20%;
padding-top:20%;
-webkit-filter: blur(2px);
}
.mask {
width: 70%;
height: 70%;
border:2px solid;
border-radius:20px;
position: fixed;
top: 15%;
left: 15%;
z-index:10;
overflow:hidden;
}
<强> FIDDLE 强>
答案 1 :(得分:0)
使用-webkit-filter:.background
div中的模糊(2px)不在.content
div中。
这是您更新的代码:
.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);
-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;
-webkit-filter: blur(2px);
}