mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 10:00:36 +01:00
d63e022485
Optimising for hardware acceleration, removing duplicate animations (slides), bumping tag
20 lines
285 B
CSS
20 lines
285 B
CSS
@keyframes bounceOut {
|
|
20% {
|
|
transform: scale3d(.9, .9, .9);
|
|
}
|
|
|
|
50%, 55% {
|
|
opacity: 1;
|
|
transform: scale3d(1.1, 1.1, 1.1);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: scale3d(.3, .3, .3);
|
|
}
|
|
}
|
|
|
|
.bounceOut {
|
|
animation-name: bounceOut;
|
|
animation-duration: .75s;
|
|
}
|