fonchat/components/page-animation/index.css

26 lines
302 B
CSS
Raw Normal View History

2023-10-25 02:02:04 +00:00
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);
}