css3父元素模糊不影响子元素

来源:互联网 发布:淘宝的会员名取什么好 编辑:程序博客网 时间:2024/05/17 05:52

说一下css3父元素模糊不影响子元素的效果。在使用css3的filter属性设置背景模糊的时候,我们通常想到的做法是写如下的代码:

<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title></title>    <style type="text/css">        .test {              width:420px;            height:420px;            filter:blur(5px);            background:url('http://www.zi-han.net.img.800cdn.com/theme/hplus/img/a3.jpg') no-repeat;            background-size: cover;        }    </style></head><body><div style="width: 300px;height: 300px;position: relative;">    <div class="test">         <img src="http://www.zi-han.net.img.800cdn.com/theme/hplus/img/a2.jpg">    </div></div></body><script type="text/javascript" src="user.js"></script></html>

但是这样设置之后,页面的效果确实父元素和子元素都模糊了!

这里写图片描述

去网上了了些资料,很多都说改 z-index=-1 但是我加到 .test 缺没有效果,后面才知道其实这是通过伪类来实现的,上面代码中的css样式改成如下:

.test {      width:420px;        height:420px;}.test::before{      content: "";    position: absolute;    filter:blur(5px);    z-index: -1;    background:url('http://www.zi-han.net.img.800cdn.com/theme/hplus/img/a3.jpg') no-repeat;    width: 100%;    height: 100%;    top: 0px;    left: 0px;    background-size: cover;    overflow:hidden;}

这样效果就对了:

这里写图片描述

在这里还需要注意一个细节,为了边缘不被模糊化,需要设置 overflow:hidden; 要不效果就是这样了:

这里写图片描述

0 0
原创粉丝点击