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

27 lines
366 B
CSS

@keyframes lightSpeedIn {
0% {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
100% {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}