From 64e5c4fe26d78743d4a9550ae6d2a37efc3e07bf Mon Sep 17 00:00:00 2001 From: liqian <735273025@qq.com> Date: Sat, 20 Dec 2025 15:32:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=BF=9B=E5=BA=A6=E6=9D=A1?= =?UTF-8?q?=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/index/view/pc/topic_laptop/index.html | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/app/index/view/pc/topic_laptop/index.html b/app/index/view/pc/topic_laptop/index.html index 5e40f78b..a8844f0f 100644 --- a/app/index/view/pc/topic_laptop/index.html +++ b/app/index/view/pc/topic_laptop/index.html @@ -904,28 +904,6 @@ document.addEventListener('DOMContentLoaded', initInterfaceElement); })(); - // 进度条动画 - // function animateProgressBars (container) - // { - // if (container._isAnimating) return; - // container._isAnimating = true; - - // const progressFills = container.querySelectorAll('.progress-fill'); - // progressFills.forEach(fill => - // { - // clearTimeout(fill._animateTimer); - // fill.style.width = '0'; - // fill._animateTimer = setTimeout(() => - // { - // const targetValue = fill.getAttribute('data-value'); - // fill.style.width = targetValue + '%'; - // setTimeout(() => - // { - // container._isAnimating = false; - // }, 500); - // }, 100); - // }); - // } // 进度条动画 - 零HTML改动,仅优化性能 function animateProgressBars (container){ // 性能优化1:用WeakMap管理状态,避免污染DOM属性