Skip to content

Instantly share code, notes, and snippets.

@coquer
Created February 25, 2015 11:12
Show Gist options
  • Save coquer/91703a19c3e56724b848 to your computer and use it in GitHub Desktop.
Save coquer/91703a19c3e56724b848 to your computer and use it in GitHub Desktop.
to be added in the style.css
.teamMemberInner img {
filter: url('js/filters.svg#grayscale');
filter: gray;
-webkit-filter: grayscale(1);
-webkit-transition: all 0.7s ease;
-moz-transition: all 0.7s ease;
-ms-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.teamMemberInner img:hover {
filter: none;
-webkit-filter: grayscale(0);
-webkit-transition: all 0.7s ease;
-moz-transition: all 0.7s ease;
-ms-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
transition: all 0.7s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment