perf(motion): 第三批入场动效时长收敛至 300ms(9 文件 20 处)

承接前两批,继续清理 Task #16 的 P0 硬违规:

- brand-content (1) / methodology-content (3) / products-content-v3 (4) /
  solution-detail-content-v3 (4) / team-content-v3 (1) / detail-product-value (2) /
  service-value (1) / solution-value (3) / brand-visuals 入场处 (1)
- 审计:P0 33 → 13,P1 163 / P2 28 持平
- 只改 duration,保留原 delay(与首批先例一致)

验证:
- tsc --noEmit 0 error;eslint 9 文件 0 error(仅 methodology 既有 `any` 警告,非本次引入)
- 视觉基线不变:前两批已证明时长改动在 reducedMotion+animations disabled 下不改变最终像素

剩余 13 处 P0 均为决策点,未在本批处理:
- 3 处循环动画(detail-hero ×2、brand-visuals ×1,repeat:Infinity,违反「禁循环动画」)
- 10 处死代码(src/lib/animations.tsx,全站零引用)
This commit is contained in:
2026-09-03 19:12:38 +08:00
parent 8117dba865
commit ceeb88aca3
9 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ export function DataBar({ value, max = 100, label, color = 'brand' }: { value: n
initial={{ width: 0 }}
whileInView={{ width: `${percentage}%` }}
viewport={{ once: true }}
transition={{ duration: 1, ease: [0.16, 1, 0.3, 1], delay: 0.2 }}
transition={{ duration: 0.3, ease: [0.16, 1, 0.3, 1], delay: 0.2 }}
className="h-full rounded-full"
style={{ backgroundColor: colorMap[color] }}
/>