Il n'y a pas d'éléments correspondant à votre recherche.

window.addEventListener("scroll", function() { const header = document.getElementById("header"); if (window.scrollY > 100) { header.classList.add("shrink"); } else { header.classList.remove("shrink"); } });