mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
0bc05a7559
and fixed typo in the previous commit at source/attention_seekers/swing.css
25 lines
331 B
CSS
25 lines
331 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;
|
|
}
|