Files
CRM/layouts/v7/lib/animate/source/bouncing_exits/bounceOutDown.css
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

20 lines
281 B
CSS

@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}