Files

15 lines
218 B
CSS
Raw Normal View History

2020-03-15 13:59:43 +08:00
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}