as shown in the figure, when the user scrolls, these blanks appear, which will affect the scrolling effect of my page itself. The experience is very poor. Is there any way to fix it
methods currently found on the Internet
ios13
document.body.addEventListener("touchmove", function(evt) {
if(!evt._isScroller) {
evt.preventDefault();
}
});
touchmove
document.body.addEventListener("touchmove", function (e) {
if(e._isScroller) return;
e.preventDefault();
}, {passive: false}); //passive