From 3aac261a34f7bf32b8cc50aa68e8e5de7e4576a3 Mon Sep 17 00:00:00 2001 From: lkddi Date: Fri, 27 Feb 2026 14:35:16 +0800 Subject: [PATCH] =?UTF-8?q?Feat:=20=E7=83=9F=E8=8A=B1=E6=97=B6=E9=95=BF?= =?UTF-8?q?=E5=BB=B6=E9=95=BF=E8=87=B310=E7=A7=92=EF=BC=8C=E5=8F=91?= =?UTF-8?q?=E5=B0=84=E6=95=B0=E9=87=8F=E5=A2=9E=E8=87=B312=E6=9E=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/js/effects/fireworks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/effects/fireworks.js b/public/js/effects/fireworks.js index 4bc0bbe..d0deef1 100644 --- a/public/js/effects/fireworks.js +++ b/public/js/effects/fireworks.js @@ -237,13 +237,13 @@ const FireworksEffect = (() => { const ctx = canvas.getContext("2d"); const w = canvas.width; const h = canvas.height; - const DURATION = 6000; + const DURATION = 10000; let rockets = []; let particles = []; let animId = null; let launchCnt = 0; - const MAX_LAUNCHES = 8; + const MAX_LAUNCHES = 12; // 定时发射火箭 const launchInterval = setInterval(() => {