首页 > 其他 > 详细

图片高斯模糊

时间:2017-11-13 19:23:33      阅读:194      评论:0      收藏:0      [点我收藏+]

html

<div class="bg"><img :src="" ></div>

css

.bg{
        position: absolute;
        width: 100%;
        height: 810px;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        -webkit-filter: blur(50px);   //设置高斯模糊度
        -moz-filter: blur(50px);     //设置高斯模糊度
        -o-filter: blur(50px);     //设置高斯模糊度
        -ms-filter: blur(50px);     //设置高斯模糊度
        filter: blur(50px);     //设置高斯模糊度
        overflow: hidden;
        img{
            position: absolute;
            top:-12%;
            left: -18%;
            width: 120%;
            height: 120%;
        }
    }

  

图片高斯模糊

原文:http://www.cnblogs.com/Code-Inconnu/p/7827385.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!