Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Created November 29, 2017 14:55
Show Gist options
  • Save mrkkr/813638c16cd97b535776ae52b53dab4d to your computer and use it in GitHub Desktop.
Save mrkkr/813638c16cd97b535776ae52b53dab4d to your computer and use it in GitHub Desktop.
Bounce arrow #css
/*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