hrms-manual/node_modules/@quasar/extras/animate/lightSpeedOutRight.css

16 lines
245 B
CSS
Raw Normal View History

2023-09-06 14:51:44 +07:00
@keyframes lightSpeedOutRight {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOutRight {
animation-name: lightSpeedOutRight;
animation-timing-function: ease-in;
}