Skip to content

Instantly share code, notes, and snippets.

@ikks
Created August 16, 2012 15:41
Show Gist options
  • Save ikks/3371167 to your computer and use it in GitHub Desktop.
Save ikks/3371167 to your computer and use it in GitHub Desktop.
Colored Image in hover
img {
-webkit-transition: -webkit-filter 1s;
-webkit-filter: grayscale(1); /* Chrome */
filter: url(filters.svg#grayscale); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
}
img:hover {
-webkit-filter: grayscale(0); /* Chrome */
filter: none; /* Applies to FF + IE */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment