Accident: Causes, Effects, and Prevention
// To stop the scrolling when reaching the end of the page let scrollTimeout; window.addEventListener(“scroll”, function() { clearTimeout(scrollTimeout); scrollTimeout = setTimeout(function() { if (window.innerHeight + window.scrollY >= document.body.offsetHeight) { clearInterval(scrollInterval); } }, 100); }); }, 3000); // 3000ms = 3 seconds delay Introduction An accident is an unexpected and unplanned event that can cause injury, … Read more