animate.css/source/attention_seekers/tada.css

32 lines
418 B
CSS
Raw Normal View History

@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
2017-11-16 00:20:46 +01:00
10%,
20% {
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
2017-11-16 00:20:46 +01:00
30%,
50%,
70%,
90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
2017-11-16 00:20:46 +01:00
40%,
60%,
80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
}