//*window.alert("Hello"); const heroElem = document.querySelector('.wp-image-1648'); const scrollAmount = 0; window.addEventListener('scroll', (event) => { const { top } = heroElem.getBoundingClientRect(); if (top - window.innerHeight < scrollAmount) { heroElem.style.backgroundImage = 'url(https://images.unsplash.com/photo-1639508586884-73d8bb7e2ac9?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80)' } }