This is not smooth because you increase the scroll speed by 50 every 100 milliseconds.
change this and the amount you scroll to a smaller number so that the function works with the illusion that it is much smoother.
slow down to make it faster or slower.
function pageScroll() { window.scrollBy(0,1); scrolldelay = setTimeout(pageScroll,10); }
will turn out to be much smoother, try it;)
Michael zaporozhets
source share