JSFiddle - React, Tailwind, and code Playground
JavaScript
scrollDelay = setInterval(function() {
window.scrollBy(0, 50);
}, 100);
window.onmousewheel = function () {
clearTimeout(scrollDelay);
};
scrollDelay = setInterval(function() {
window.scrollBy(0, 50);
}, 100);
window.onmousewheel = function () {
clearTimeout(scrollDelay);
};