Skip to content

Instantly share code, notes, and snippets.

@edsykes
Created November 26, 2014 22:42
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/e9d29c1d9bbfa983376b to your computer and use it in GitHub Desktop.
Save edsykes/e9d29c1d9bbfa983376b to your computer and use it in GitHub Desktop.
Simple SVG flood example
<svg>
<defs>
<filter id="flood-1">
<feFlood x="30" y="30" width="30" height="30" flood-color="#00f" result="flood"/>
</filter>
</defs>
<circle cx="50" cy="50" r="50" fill="#0f0" filter="url(#flood-1)" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment