From b8012137e525eee4202b284a97378e587efc900b Mon Sep 17 00:00:00 2001 From: A1300399510 Date: Fri, 27 Dec 2024 14:57:12 +0800 Subject: [PATCH] no message --- css/index.css | 9 +++++++++ css/index.less | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/css/index.css b/css/index.css index f7b14bc..cf89d54 100644 --- a/css/index.css +++ b/css/index.css @@ -345,6 +345,15 @@ gap: 10px; opacity: 0; transition: all 0.3s; + animation: listShow 0.3s forwards; +} +@keyframes listShow { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } } .recruit .list .list-item.active { opacity: 1; diff --git a/css/index.less b/css/index.less index 86e1452..0cf2cc0 100644 --- a/css/index.less +++ b/css/index.less @@ -386,6 +386,16 @@ gap: 10px; opacity: 0; transition: all 0.3s; + animation: listShow 0.3s forwards; + @keyframes listShow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } + } &.active { opacity: 1; }