Skip to content

Instantly share code, notes, and snippets.

@jorgechavz
Created August 24, 2015 05:18
Show Gist options
  • Save jorgechavz/fe1513287f22af48ca8a to your computer and use it in GitHub Desktop.
Save jorgechavz/fe1513287f22af48ca8a to your computer and use it in GitHub Desktop.
SVG nice Filter
//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