Created
February 25, 2015 11:12
-
-
Save coquer/91703a19c3e56724b848 to your computer and use it in GitHub Desktop.
to be added in the style.css
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
.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