From 938e83d37ffc1f191013319f1a955a1b22161dbf Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 20 Jan 2026 12:22:21 +0800 Subject: [PATCH] =?UTF-8?q?chore(=E5=BC=B9=E5=B9=95=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E9=80=9F=E5=BA=A6=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Ranking/Couple/components/Barrage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Ranking/Couple/components/Barrage.vue b/src/views/Ranking/Couple/components/Barrage.vue index 55a7cab..cea2998 100644 --- a/src/views/Ranking/Couple/components/Barrage.vue +++ b/src/views/Ranking/Couple/components/Barrage.vue @@ -178,7 +178,7 @@ const getBarrageStyle = (item) => { const generateBarrageProps = (item) => { const textLength = item.content.length return { - duration: Math.max(8 - textLength * 0.2, 5) * (100 / props.speed), // 弹幕项持续时间(每字符减少0.2秒,持续时间不低于5秒) + duration: Math.max(8 - textLength * 0.1, 5) * (100 / props.speed), // 弹幕项持续时间(每字符减少0.2秒,持续时间不低于5秒) startPos: 0, // 弹幕项起始位置 } }