Skip to content

Instantly share code, notes, and snippets.

@levinmejia
Created December 18, 2015 19:17
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 levinmejia/2160406d59220bc8a232 to your computer and use it in GitHub Desktop.
Save levinmejia/2160406d59220bc8a232 to your computer and use it in GitHub Desktop.
.grayscale {
-webkit-filter: grayscale(1);
filter: grayscale(1);
transition: 2s;
animation-timing-function:ease-in-out;
}
.grayscale:hover {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment