From d54ab7ad61159e961a97e9ef6c62253470de0a48 Mon Sep 17 00:00:00 2001 From: JikokuAice <134251470+JikokuAice@users.noreply.github.com> Date: Sun, 16 Jul 2023 12:35:23 +0545 Subject: [PATCH] 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 --- source/fading_exits/fadeOut.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fading_exits/fadeOut.css b/source/fading_exits/fadeOut.css index d19c396..8f92ecc 100644 --- a/source/fading_exits/fadeOut.css +++ b/source/fading_exits/fadeOut.css @@ -1,10 +1,10 @@ @keyframes fadeOut { - from { + 0% { opacity: 1; } - to { - opacity: 0; + 100% { + opacity: 0.2; } }