Created
March 31, 2012 11:57
-
-
Save beakr/2262845 to your computer and use it in GitHub Desktop.
Fading links, only works in CSS3.
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
/* Fade in and out link colors with CSS3. */ | |
a { color: #5588E0; transition:.3s linear; -webkit-transition:.3s linear; } | |
a:hover { color: #E07355; } |
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
<a href="#">Watch the fade effect...</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment