hi-ucs/node_modules/animate.css/source/fading_exits/fadeOutUp.css

15 lines
168 B
CSS
Raw Permalink Normal View History

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