淘先锋技术网

首页 1 2 3 4 5 6 7

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

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>

    <style type="text/css">


        .test {  
            width:px;
            height:px;
            filter:blur(px);
            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:px;
        height:px;
}


.test::before{  
    content: "";
    position: absolute;

    filter:blur(px);
    z-index: -;
    background:url('http://www.zi-han.net.img.800cdn.com/theme/hplus/img/a3.jpg') no-repeat;
    width: %;
    height: %;
    top: px;
    left: px;
    background-size: cover;
    overflow:hidden;
}

这样效果就对了:

这里写图片描述

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

这里写图片描述