Skip to content

Instantly share code, notes, and snippets.

@DarrylDias
Created December 14, 2014 05:53
Show Gist options
  • Save DarrylDias/32a9abab60f2ac7002d7 to your computer and use it in GitHub Desktop.
Save DarrylDias/32a9abab60f2ac7002d7 to your computer and use it in GitHub Desktop.
Colorize image on hover animation
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