From 31e9f613841bebc0eda31707f0cf8940b832e309 Mon Sep 17 00:00:00 2001 From: hi2hi Date: Wed, 26 Feb 2025 04:40:01 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=84=20=E9=83=A8=E5=88=86=E5=AE=89?= =?UTF-8?q?=E5=8D=93=E6=B5=8F=E8=A7=88=E5=99=A8=E6=B8=B2=E6=9F=93=E5=8A=A8?= =?UTF-8?q?=E7=94=BB=E4=BC=9A=E5=8D=A1=E9=A1=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/home.vue b/src/views/home.vue index c760aa9..10f9f3e 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -111,6 +111,10 @@ const showTransition = computed(() => { if (config.nazhua.forceTransition) { return true; } + // 安卓设备不开启 -> 部分安卓浏览器渲染动画会卡顿 + if (window.navigator.userAgent.includes('Android')) { + return false; + } // 服务器数量小于7时,不开启 return store.state.serverList.length < 7; });