animate.css/source/attention_seekers/tada.css
Sarbbottam Bandyopadhyay 9310cf98ed Unified formatting across files
indent_style = space
indent_size = 2
insert_final_newline = true
each line within { } to specify single rule
2014-02-24 02:09:02 +05:30

26 lines
326 B
CSS

@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);
}
}
.tada {
animation-name: tada;
}