animate.css/attention_seekers/tada.styl
Sean Lang 230359a389 removed class names - they're unsemantic
added note to readme about how to get them back
normalized characters used for indentation too
2013-12-08 22:42:36 -06:00

7 lines
247 B
Stylus

@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);}
}