From 2aab0f715284fb97406731a6a8bea7105345ea7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=BC=A0?= <2091066548@qq.com> Date: Sat, 30 Aug 2025 02:28:29 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9Ahome=E9=A1=B5=E9=9D=A2=E7=9B=91?= =?UTF-8?q?=E5=90=AC=E6=BB=9A=E8=BD=AE=E9=AB=98=E5=BA=A6=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E5=8F=B3=E4=B8=8B=E8=A7=92=E5=AE=A2=E6=9C=8D=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E7=AD=89=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Home.vue | 114 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 109 insertions(+), 5 deletions(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index eb57142..3e8c063 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -501,13 +501,13 @@ -
-
+
+
问题
@@ -520,7 +520,7 @@ @@ -867,8 +961,18 @@ onMounted(async () => { display: flex; flex-direction: column; gap: 15px; - z-index: 1000; + opacity: 0; + visibility: hidden; + transform: translateY(20px); + transition: all 0.3s ease; +} + +/* 显示状态 */ +.fixed-buttons-group.show { + opacity: 1; + visibility: visible; + transform: translateY(0); } .fixed-button {