Skip to content

Instantly share code, notes, and snippets.

@Chrisedmo
Created June 7, 2012 14:33
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 Chrisedmo/2889121 to your computer and use it in GitHub Desktop.
Save Chrisedmo/2889121 to your computer and use it in GitHub Desktop.
webkit filter on text!?
/**
* webkit filter on text!?
*/
body {
padding: 50px;
font-family: 'Helvetica Neue', helvetica, arial;
}
h1 {
font-size: 55px;
text-transform: uppercase;
}
span {
-webkit-filter: blur(6px);
transition: -webkit-filter ease 0.7s;
}
span:hover {
-webkit-filter: blur(0);
}
<h1>I'm all <span>Fuzzy…</span></h1>
<p><small>You gotta hover over that…</small></p>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment