mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
14 lines
204 B
CSS
14 lines
204 B
CSS
@keyframes slideInLeft {
|
|
0% {
|
|
transform: translate3d(-100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
|
|
100% {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
.slideInLeft {
|
|
animation-name: slideInLeft;
|
|
}
|