easynode/web/src/assets/scss/animate.scss
chaoszhu 8d52e34d6f update
2024-07-10 16:52:59 +08:00

19 lines
395 B
SCSS

// vue transition 动画
.list-move, /* apply transition to moving elements */
.list-enter-active,
.list-leave-active {
transition: all 0.5s ease;
}
.list-enter-from,
.list-leave-to {
opacity: 0;
transform: translateY(-30px);
}
/* ensure leaving items are taken out of layout flow so that moving
animations can be calculated correctly. */
.list-leave-active {
position: absolute;
}