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
313 B
CSS
25 lines
313 B
CSS
@keyframes rubberBand {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
30% {
|
|
transform: scaleX(1.25) scaleY(0.75);
|
|
}
|
|
|
|
40% {
|
|
transform: scaleX(0.75) scaleY(1.25);
|
|
}
|
|
|
|
60% {
|
|
transform: scaleX(1.15) scaleY(0.85);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.rubberBand {
|
|
animation-name: rubberBand;
|
|
}
|