Created
November 29, 2017 14:55
-
-
Save mrkkr/813638c16cd97b535776ae52b53dab4d to your computer and use it in GitHub Desktop.
Bounce arrow #css
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
/*bounce arrow scroll*/ | |
@keyframes bounce-scroll { | |
0%, 20%, 50%, 80%, 100% { | |
transform: translateY(0); | |
} | |
40% { | |
transform: translateY(-30px); | |
} | |
60% { | |
transform: translateY(-15px); | |
} | |
} | |
.bounce { | |
animation: bounce-scroll 2s infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment