hi-ucs/node_modules/_animate.css@4.1.1@animate.css/source/sliding_exits/slideOutUp.css

15 lines
200 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}