diff --git a/src/views/BattleRanking.vue b/src/views/BattleRanking.vue index 5b714f4..6d89db0 100644 --- a/src/views/BattleRanking.vue +++ b/src/views/BattleRanking.vue @@ -1037,7 +1037,8 @@ const startDrumAnimation = () => { drum.style.setProperty('--drum-translate-y', isStrongBeat ? `${(animationConfig.beatTranslateY || -15) * (1 + (patternConfig.accentAnimation || 0) / 100)}px` : `${animationConfig.beatTranslateY || -15}px`); - drum.style.setProperty('--drum-rotate', `${animationConfig.beatRotate || 5}deg`); + drum.style.setProperty('--drum-rotate', `${animationConfig.beatRotate || 5}deg`); + drum.style.setProperty('--drum-brightness', isStrongBeat ? '1.4' : '1.3'); drum.style.setProperty('--drum-saturation', isStrongBeat ? '1.3' : '1.2'); });