2025-04-02 21:57:33 +08:00

14 lines
121 B
CSS

@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}