perf(web-antd): 缩短加载页面的淡出过渡时间

将 loading.html 中全局隐藏过渡的持续时间从 1 秒减少到 0.6 秒,以加快页面切换时的视觉反馈速度,提升用户体验。
This commit is contained in:
dap
2026-02-03 21:31:03 +08:00
parent 543162986f
commit f53c7b48c0

View File

@@ -45,7 +45,7 @@
pointer-events: none;
visibility: hidden;
opacity: 0;
transition: all 1s ease-out;
transition: all 0.6s ease-out;
}
/** 下面是自定义 **/