hi-ucs/node_modules/animate.css/source/sliding_exits/slideOutRight.css

15 lines
208 B
CSS
Raw Normal View History

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