Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Last active April 21, 2023 07:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lonekorean/1ae79b3d2f1d14d450ab6bdece75a98a to your computer and use it in GitHub Desktop.
Save lonekorean/1ae79b3d2f1d14d450ab6bdece75a98a to your computer and use it in GitHub Desktop.
Goo blobs SVG filter
<svg>
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="30" 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 50 -16
" result="matrix" />
<feBlend in="SourceGraphic" in2="matrix" />
</filter>
</defs>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment