Created
August 18, 2013 10:09
-
-
Save WebFikirleri/6260893 to your computer and use it in GitHub Desktop.
css: transition grayscale
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
.trns-grays{ | |
-webkit-filter: grayscale(90%); | |
-webkit-transition: 0.4s all ease; | |
-moz-transition: 0.4s all ease; | |
-o-transition: 0.4s all ease; | |
-ms-transition: 0.4s all ease; | |
transition: 0.4s all ease; | |
} | |
.trns-grays:hover{ | |
-webkit-filter: grayscale(0%); | |
-webkit-transition: 0.4s all ease; | |
-moz-transition: 0.4s all ease; | |
-o-transition: 0.4s all ease; | |
-ms-transition: 0.4s all ease; | |
transition: 0.4s all ease; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment