Skip to content

Instantly share code, notes, and snippets.

@edsykes
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsykes/ab6365d7d595846be564 to your computer and use it in GitHub Desktop.
Save edsykes/ab6365d7d595846be564 to your computer and use it in GitHub Desktop.
nice blur effect
<filter x="-50%" y="-50%" id="drop-shadow" height="250%" width="380%">
<feGaussianBlur in="SourceAlpha" stdDeviation="10" result="blur"></feGaussianBlur>
<feOffset in="blur" dx="0" dy="0" result="offsetBlur"></feOffset>
<feMerge>
<feMergeNode in="offsetBlur"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
@edsykes
Copy link
Author

edsykes commented Nov 26, 2014

@edsykes
Copy link
Author

edsykes commented Nov 26, 2014

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment