4. Installazione e Magia finale

Agosto 11, 2025
0 Mins

Quando il progetto prende vita
Il nostro lavoro si completa con il montaggio in loco, curato in ogni fase per garantire sicurezza, estetica e funzionalità. Il momento in cui accendi le luci e vedi l’allestimento finito è la vera magia: la tua visione diventa realtà.

Prev No Next Post Available
document.addEventListener("DOMContentLoaded", function () { const header = document.querySelector(".custom-header"); if (!header) return; let lastScrollY = window.scrollY; const thresholdTop = 80; const delta = 12; function handleScroll() { const currentScrollY = window.scrollY; const difference = currentScrollY - lastScrollY; if (currentScrollY ≤ thresholdTop) { header.classList.remove("scrolled-down"); lastScrollY = currentScrollY; return; } if (difference ≥ delta) { header.classList.add("scrolled-down"); lastScrollY = currentScrollY; return; } if (difference ≤ -delta) { header.classList.remove("scrolled-down"); lastScrollY = currentScrollY; return; } } window.addEventListener("scroll", handleScroll, { passive: true }); });