大师傅啊
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-23 01:56:33 +08:00
parent 402b8bd963
commit 3ace18e3f3

View File

@@ -286,28 +286,26 @@
width: auto; width: auto;
position: relative; position: relative;
background: linear-gradient(120deg, background: linear-gradient(120deg,
#999999 0%, #AAAAAA 0%,
#AAAAAA 30%, #CCCCCC 35%,
#FFFFFF 45%,
#FFFFFF 50%, #FFFFFF 50%,
#FFFFFF 55%, #CCCCCC 65%,
#AAAAAA 70%, #AAAAAA 100%
#999999 100%
); );
background-size: 300% 300%; background-size: 200% 100%;
-webkit-background-clip: text; -webkit-background-clip: text;
background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
animation: shine 6s linear infinite; animation: shine 6s linear infinite;
filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
} }
@keyframes shine { @keyframes shine {
0% { 0% {
background-position: 200% 200%; background-position: -200% 0;
} }
100% { 100% {
background-position: -200% -200%; background-position: 200% 0;
} }
} }