Skip to content

Instantly share code, notes, and snippets.

@BuddyLReno
Created August 22, 2016 13:53
Show Gist options
  • Save BuddyLReno/1f4c3062527a2af88a956bd5f345a1b9 to your computer and use it in GitHub Desktop.
Save BuddyLReno/1f4c3062527a2af88a956bd5f345a1b9 to your computer and use it in GitHub Desktop.
Keyframe Animation
.arrow {
animation: arrow-bounce 1s ease-in-out infinite alternate;
}
@keyframes arrow-bounce {
from {
transform: translateY(0);
}
to {
transform: translateY(1rem);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment