Created
December 14, 2014 05:53
-
-
Save DarrylDias/32a9abab60f2ac7002d7 to your computer and use it in GitHub Desktop.
Colorize image on hover animation
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 { | |
-webkit-filter: grayscale(100%); | |
-webkit-transition: -webkit-filter 500ms linear; | |
} | |
img:hover { | |
-webkit-filter: grayscale(20%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment