From 1e9b63e577d10ee5a4758b3f2afd2cefadeccdf6 Mon Sep 17 00:00:00 2001 From: ltadeu6 Date: Sun, 7 Jun 2026 10:14:18 -0300 Subject: [PATCH] Remove character bounce from beat, keep only horizon pulse Co-Authored-By: Claude Sonnet 4.6 --- plugin/contents/ui/dancer.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/plugin/contents/ui/dancer.html b/plugin/contents/ui/dancer.html index 11bd527..90756d9 100644 --- a/plugin/contents/ui/dancer.html +++ b/plugin/contents/ui/dancer.html @@ -973,11 +973,9 @@ const beatWrap = document.querySelector('.beat-wrap'); const horizonEl = document.querySelector('.horizon'); function triggerBeat() { - [beatWrap, horizonEl].forEach(el => { - el.classList.remove('beat'); - void el.offsetWidth; - el.classList.add('beat'); - }); + horizonEl.classList.remove('beat'); + void horizonEl.offsetWidth; + horizonEl.classList.add('beat'); } function detectBeat(vals) {