3. Realizzazione su misura

Agosto 11, 2025
0 Mins

Artigianato, tecnologia e creatività
Nei nostri laboratori, materiali di qualità e tecniche innovative si fondono con la maestria artigianale del nostro team. Ogni elemento viene costruito su misura per adattarsi perfettamente al tuo spazio e alla tua storia.

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 }); });