fonchat/components/page-animation/index.css
2023-10-25 10:02:04 +08:00

26 lines
302 B
CSS

uni-page {
opacity: 0;
}
uni-page.animation-before {
transform: translateY(20px);
}
uni-page.animation-leave {
transition: all .3s ease;
}
uni-page.animation-enter {
transition: all .3s ease;
}
uni-page.animation-show {
opacity: 1;
}
uni-page.animation-after {
transform: translateY(0);
}