Created
August 22, 2016 13:53
-
-
Save BuddyLReno/1f4c3062527a2af88a956bd5f345a1b9 to your computer and use it in GitHub Desktop.
Keyframe Animation
This file contains 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
.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