Skip to content

Instantly share code, notes, and snippets.

@ankedsgn
Created August 18, 2021 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankedsgn/f6f011d6ef567cac16fce01d0b4ebb1b to your computer and use it in GitHub Desktop.
Save ankedsgn/f6f011d6ef567cac16fce01d0b4ebb1b to your computer and use it in GitHub Desktop.
Animations
// Bouncing link
a:hover {
animation: bounce .7s ease-in-out;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-5px);}
60% {transform: translateY(-2px);}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment