Update fadeOut.css

Added percentage to make it easier to understand like 0 is starting point and 100% is the ending and animation takes place in between them
This commit is contained in:
JikokuAice 2023-07-16 12:35:23 +05:45 committed by GitHub
parent 3235f27325
commit d54ab7ad61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
@keyframes fadeOut {
from {
0% {
opacity: 1;
}
to {
opacity: 0;
100% {
opacity: 0.2;
}
}