Created
September 10, 2013 09:32
-
-
Save RyanRoberts/6507095 to your computer and use it in GitHub Desktop.
Tada
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
@-moz-keyframes tada { | |
0% {-moz-transform: scale(1);} | |
10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);} | |
30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);} | |
40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);} | |
100% {-moz-transform: scale(1) rotate(0);} | |
} | |
@-o-keyframes tada { | |
0% {-o-transform: scale(1);} | |
10%, 20% {-o-transform: scale(0.9) rotate(-3deg);} | |
30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);} | |
40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);} | |
100% {-o-transform: scale(1) rotate(0);} | |
} | |
@keyframes tada { | |
0% {transform: scale(1);} | |
10%, 20% {transform: scale(0.9) rotate(-3deg);} | |
30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);} | |
40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);} | |
100% {transform: scale(1) rotate(0);} | |
} | |
#stewart .profile-pic{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}@-webkit-keyframes tada { | |
0% {-webkit-transform: scale(1);} 10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);} | |
30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);} | |
40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);} | |
100% {-webkit-transform: scale(1) rotate(0);} | |
} | |
#stewart .profile-pic:hover { | |
-webkit-animation-name: tada; | |
-moz-animation-name: tada; | |
-o-animation-name: tada; | |
animation-name: tada; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment