For better reading experience, we can make to page scroll down automatically with JavaScript bellow.
function pageScroll() {
window.scrollBy(0,1);
}
setInterval(pageScroll,35);
In a page that you are reading, press F12 to reach developer panel, click on Console pane and paste the script above and hit enter key. Now the page is crolling down slowly while you are reading.
You could adjust the scroll speed to adapt your reading speed by changing the number of miliseconds in setInterval function call, the larger the number the slower the speed.
339 total views, 4 views today
Comments