css设置背景模糊

2018-10-23 03:05:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

使用filter属性来设置模糊值

效果:

 

css样式:

 

<style type="text/css">
        .cover {
            width: 600px;
            height: 300px;
            position: relative;
            text-align: center;
            line-height: 300px;
            color: #fff;
            margin: 20px auto;
        }
        
        .cover::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 600px;
            height: 300px;
            background: transparent url(Images/picture/5.jpg) center center no-repeat;
            filter: blur(8px);
            z-index: -1;
            background-size: cover;
        }
    </style>

 

HTML结构:

<body>
    <div class="cover">
        <h2>背景模糊,文字清晰显示</h2>
    </div>
</body>

  

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:vue移动端h5页面根据屏幕适配的四种方案

下一篇:团队合作前端书写习惯总结