Created
August 18, 2021 07:39
-
-
Save ankedsgn/f6f011d6ef567cac16fce01d0b4ebb1b to your computer and use it in GitHub Desktop.
Animations
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
// 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