Files
ms1inscription-v5/libs/animate.css-3.7.2/source/bouncing_exits/bounceOut.css
2026-05-13 09:43:32 -04:00

22 lines
292 B
CSS

@keyframes bounceOut {
20% {
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
animation-duration: 0.75s;
animation-name: bounceOut;
}