lyklee Media

Wir sind bald für dich da
// Interaktive Animation bei Scrollen document.addEventListener("scroll", () => { const heroContent = document.querySelector(".hero-content"); const scrollPosition = window.scrollY; heroContent.style.transform = `translateY(${scrollPosition * 0.5}px)`; });