From 2803b63f0e873b5e3618ac235f054ac997e67f4a Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 16 Feb 2026 19:30:20 +0000 Subject: [PATCH] Auto commit: 2026-02-16T19:30:20.469Z --- index.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 56dc615..6116bc2 100644 --- a/index.php +++ b/index.php @@ -59,7 +59,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489"; height: 100%; background: url('assets/images/background.jpg') center/cover no-repeat; z-index: -1; - transition: filter 0.1s ease-out, transform 0.1s ease-out; + transition: filter 0.05s ease-out, transform 0.05s ease-out; will-change: filter, transform; } @@ -873,9 +873,10 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489"; // Apply flicker to background if (bg) { - const brightness = 1 + (bassIntensity * 0.4); // More punchy - const scale = 1 + (bassIntensity * 0.02); - bg.style.filter = `brightness(${brightness})`; + const brightness = 1 + (bassIntensity * 0.85); // Ultra punchy + const scale = 1 + (bassIntensity * 0.06); // Stronger zoom + const saturation = 1 + (bassIntensity * 0.5); // Add color intensity + bg.style.filter = `brightness(${brightness}) saturate(${saturation})`; bg.style.transform = `scale(${scale})`; }