背景虚化

Posted 十月芬芳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了背景虚化相关的知识,希望对你有一定的参考价值。

背景虚化
.bg{
    background: url(‘../image/Login/bg.png‘);
    background-repeat: no-repeat;
    background-size: 1280px 720px;
    width: 100%;
    height: 720px;
    z-index: -1;
    position: absolute;
    -webkit-filter: blur(15px); 
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(10px);

    filter: url(blur.svg#blur); 
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false); 
}

以上是关于背景虚化的主要内容,如果未能解决你的问题,请参考以下文章