hi-ucs/node_modules/animate.css/source/sliding_entrances/slideInDown.css

15 lines
204 B
CSS
Raw Normal View History

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