Blur effect on a div element

后端 未结 4 1144
刺人心
刺人心 2020-12-13 17:16

Is it possible to add a gaussian blur on div element? If yes, how I can do this?

4条回答
  •  时光说笑
    2020-12-13 17:30

    I got blur working with SVG blur filter:

    CSS

    -webkit-filter: url(#svg-blur);
            filter: url(#svg-blur);
    

    SVG

    
        
            
        
    
    

    Working example:

    https://jsfiddle.net/1k5x6dgm/

    Please note - this will not work in IE versions

提交回复
热议问题