From 8f0c2ac7df1a1d77e4010e85daa675a9bfd4c6af Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:23:54 +0100 Subject: [PATCH] Fix animation delay calculation for symbols in resurrection feature --- Jellyfin.Plugin.Seasonals/Web/resurrection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.Seasonals/Web/resurrection.js b/Jellyfin.Plugin.Seasonals/Web/resurrection.js index 374f6e9..1dd21b1 100644 --- a/Jellyfin.Plugin.Seasonals/Web/resurrection.js +++ b/Jellyfin.Plugin.Seasonals/Web/resurrection.js @@ -57,7 +57,7 @@ function createSymbol(imageSrc, leftPercent, delaySeconds) { img.alt = ''; symbol.style.left = `${leftPercent}%`; - symbol.style.animationDelay = `${delaySeconds}s, ${Math.random() * 3}s`; + symbol.style.animationDelay = `${delaySeconds}s, -${Math.random() * 3}s`; if (enableDifferentDuration) { const fallDuration = Math.random() * 7 + 7;