From 402b8bd9637d74731b1dd3d2aa55b9ecf260bbbe Mon Sep 17 00:00:00 2001 From: yiqiu Date: Sun, 23 Nov 2025 01:53:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B8=88=E5=82=85=E4=BD=86=E6=98=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/index.css | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/css/index.css b/css/index.css index 3e086f3..4251266 100644 --- a/css/index.css +++ b/css/index.css @@ -286,26 +286,28 @@ width: auto; position: relative; background: linear-gradient(120deg, - rgba(230, 230, 230, 1) 0%, - rgba(230, 230, 230, 1) 40%, - rgba(255, 255, 255, 1) 50%, - rgba(230, 230, 230, 1) 60%, - rgba(230, 230, 230, 1) 100% + #999999 0%, + #AAAAAA 30%, + #FFFFFF 45%, + #FFFFFF 50%, + #FFFFFF 55%, + #AAAAAA 70%, + #999999 100% ); - background-size: 200% 200%; + background-size: 300% 300%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shine 6s linear infinite; - filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); + filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); } @keyframes shine { 0% { - background-position: -200% -200%; + background-position: 200% 200%; } 100% { - background-position: 200% 200%; + background-position: -200% -200%; } }