Created
August 24, 2015 05:18
-
-
Save jorgechavz/fe1513287f22af48ca8a to your computer and use it in GitHub Desktop.
SVG nice Filter
This file contains 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
//Apply this to the containter | |
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="filters"> | |
<defs> | |
<filter id="blur"> | |
<feGaussianBlur in="SourceGraphic" stdDeviation="20" result="blur" /> | |
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" /> | |
<feComposite in="SourceGraphic" in2="goo" operator="atop"/> | |
</filter> | |
</defs> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment