JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    height: 4000px;
    border: 1px solid #ccf;
}

JavaScript

var lastScroll;
window.addEventListener('scroll', function (e) {
    if (lastScroll) return window.scrollTo(0, lastScroll);
    
    var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
    if (scrollTop > 1000) lastScroll = scrollTop;
});