From bced24e47dc2cae0013e8d5a7884dd903288f591 Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 18 Aug 2025 19:59:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20rss=20=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/components/HeaderComponent.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/frontend_nuxt/components/HeaderComponent.vue b/frontend_nuxt/components/HeaderComponent.vue index 524e48178..8b28cb783 100644 --- a/frontend_nuxt/components/HeaderComponent.vue +++ b/frontend_nuxt/components/HeaderComponent.vue @@ -385,7 +385,22 @@ onMounted(async () => { } .rss-icon { - text-shadow: 0 0 10px var(--primary-color); + animation: rss-glow 2s 3; +} + +@keyframes rss-glow { + 0% { + text-shadow: 0 0 0px var(--primary-color); + opacity: 1; + } + 50% { + text-shadow: 0 0 12px var(--primary-color); + opacity: 0.8; + } + 100% { + text-shadow: 0 0 0px var(--primary-color); + opacity: 1; + } } @media (max-width: 1200px) {