Created
December 16, 2011 14:33
-
-
Save drublic/1486258 to your computer and use it in GitHub Desktop.
Testing CSS3 Filters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Testing CSS3 Filters | |
*/ | |
img { | |
-webkit-transition: all .5s ease; | |
-webkit-filter: blur(0); | |
} | |
img:hover { | |
-webkit-filter: blur(5px); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="http://lab.simurai.com/css/imageblur/simurai_logo.png"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"page":"css","view":"split"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment