15 lines
190 B
CSS
Executable File
15 lines
190 B
CSS
Executable File
@keyframes slideInLeft {
|
|
0% {
|
|
transform: translateX(-100%);
|
|
visibility: visible;
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
.slideInLeft {
|
|
animation-name: slideInLeft;
|
|
}
|