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