Created
April 6, 2012 05:43
-
-
Save paceaux/2317345 to your computer and use it in GitHub Desktop.
CSS3 smooth transitions
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
/*--- | |
Normal state | |
---*/ | |
a, a:link, a:visited{ | |
-webkit-transition: all .3s ease-out; | |
-moz-transition: all .3s ease-out; | |
-o-transition: all .3s ease-out; | |
transition: all .3s ease-out; | |
} | |
/*--- | |
Hover State | |
---*/ | |
a:hover, a:focus{ | |
-webkit-transition: all .3s ease-in; | |
-moz-transition: all .3s ease-in; | |
-o-transition: all .3s ease-in; | |
transition: all .3s ease-in; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment