fader
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 18s

This commit is contained in:
schrumpel 2023-11-29 04:47:41 +01:00
parent 7a42e6ffce
commit cba5fc0410

View File

@ -2932,4 +2932,30 @@ button#togglebg {
border: 0;
background: transparent;
cursor: pointer;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fader-in {
animation: fadeIn .8s steps(100) forwards;
}
.fader-out {
animation: fadeOut .8s steps(100) forwards
}