From 4db7e738d24ed4aa1f9de4cd407a2a49d622a2ff Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Fri, 27 Feb 2026 11:16:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=BA=E6=9E=84=E5=AE=A1=E6=A0=B8-=E8=AF=A6?= =?UTF-8?q?=E6=83=85-=E5=A4=8D=E5=88=B6=E6=8C=89=E9=92=AE=E5=8A=A8?= =?UTF-8?q?=E7=94=BB=E6=95=88=E6=9E=9C=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/OrgApplyInfoForm.vue | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue b/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue index 0aab9f1..6af72bf 100644 --- a/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue +++ b/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue @@ -662,24 +662,13 @@ defineExpose({ /* 3. 悬停触发:执行动画 */ .aclk:hover::before { - animation: light-sweep 1.5s ease-in-out forwards; + animation: light-sweep 1.15s ease-in-out forwards; } /* 4. 关键帧定义 */ @keyframes light-sweep { - 0% { - left: -100%; /* 从左边外开始 */ - } - 100% { - /* - 逻辑: - 按钮宽度是 100%。 - 光带宽度也是 100%。 - 要让光带完全移出右侧边界,left 需要移动到 200% 的位置。 - 这样光带的左边缘(200%) + 光带宽(100%) = 300%,完全在右边外面了。 - 即使只设 150% 也能大部分移出,200% 最稳妥。 - */ - left: 200%; + to { + left: 100%; } }