Created
April 17, 2018 12:59
-
-
Save Kolenov/85e97260accb8f5a698529fb54e4b8cd to your computer and use it in GitHub Desktop.
svg blur
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> | |
<defs> | |
<filter id="blur"> | |
<feGaussianBlur in="SourceGraphic" stdDeviation="14"></feGaussianBlur> | |
</filter> | |
</defs> | |
</svg> | |
.svgblur{ | |
filter: url(#blur); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment