Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Last active September 29, 2015 19:42
Show Gist options
  • Save LeaVerou/e60c2722c314a0bba5e1 to your computer and use it in GitHub Desktop.
Save LeaVerou/e60c2722c314a0bba5e1 to your computer and use it in GitHub Desktop.
SVG filters in data URIs!
/**
* SVG filters in data URIs!
*/
img {
-webkit-filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\
<filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="5" /></filter></svg>#blur');
filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\
<filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="5" /></filter></svg>#blur');
}
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Stray_kitten_Rambo002.jpg/1024px-Stray_kitten_Rambo002.jpg" />
<svg viewBox="0 0 100 100">
<filter id="blur">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" />
</filter>
</svg>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment