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