Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save douglasmiranda/1076210 to your computer and use it in GitHub Desktop.
Save douglasmiranda/1076210 to your computer and use it in GitHub Desktop.
Animate hover effect on links (CSS -webkit-transition)
a {
color:green;
-webkit-transition-property: color;
-webkit-transition-duration: 0.5s;
-webkit-transition-timing-function: linear;
}
a:hover {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment