Skip to content

Instantly share code, notes, and snippets.

@mvrozanti
Last active January 11, 2023 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvrozanti/c5aa79fdeca780815b470df41116b754 to your computer and use it in GitHub Desktop.
Save mvrozanti/c5aa79fdeca780815b470df41116b754 to your computer and use it in GitHub Desktop.
Automatically scroll a page using javascript
let stop = false
let amount = 5
let delay = 10
function pageScroll() {
window.scrollBy(0, amount);
if(!stop)
scrolldelay = setTimeout(pageScroll,delay);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment