elearning/Frontend-Learner/node_modules/@quasar/extras/animate/backOutLeft.css

21 lines
281 B
CSS
Raw Normal View History

2026-01-13 10:46:40 +07:00
@keyframes backOutLeft {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateX(-2000px) scale(0.7);
opacity: 0.7;
}
}
.backOutLeft {
animation-name: backOutLeft;
}