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

16 lines
223 B
CSS

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