From e200401abccbe40fb977533bcd5c8806697cc356 Mon Sep 17 00:00:00 2001 From: hehh Date: Tue, 25 Nov 2025 11:04:26 +0800 Subject: [PATCH] =?UTF-8?q?refactor(about):=20=E4=BC=98=E5=8C=96=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E6=9B=B4=E6=96=B0=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除一次性应用所有样式更新的注释 - 直接应用transform和opacity样式更新 - 简化样式更新流程 --- js/about.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/about.js b/js/about.js index a0c7025..de0479a 100644 --- a/js/about.js +++ b/js/about.js @@ -865,7 +865,6 @@ class UIManager { }); }); - // 一次性应用所有样式更新 updates.forEach(update => { update.el.style.transform = update.transform; update.el.style.opacity = update.opacity;