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

22 lines
396 B
CSS
Raw Normal View History

2026-01-13 10:46:40 +07:00
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
animation-duration: calc(var(--animate-duration) * 0.75);
backface-visibility: visible !important;
animation-name: flipOutY;
}