Created
March 15, 2016 15:42
-
-
Save pketh/73241d2ef2b1baa19984 to your computer and use it in GitHub Desktop.
jiggle animation css
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
.jiggle | |
animation: jiggle 0.25s 1 ease-out forwards | |
@keyframes jiggle | |
0% | |
transform: rotate(-3deg) | |
33% | |
transform: rotate(3deg) | |
66% | |
transform: rotate(-3deg) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment