Terms of Use

function handleScroll() { console.log("Scrolling detected"); document.body.style.backgroundColor = "#f5f5f5"; setTimeout(function () { document.body.style.backgroundColor = "#ffffff"; }, 500);}// event listenerwindow.addEventListener("scroll", handleScroll);