Skip to content

Instantly share code, notes, and snippets.

@edo9k
Created April 1, 2019 19:58
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 edo9k/cdbba4666037bacbe91cec0ebc5c5620 to your computer and use it in GitHub Desktop.
Save edo9k/cdbba4666037bacbe91cec0ebc5c5620 to your computer and use it in GitHub Desktop.
Page auto-scroll one liner
// scrolls two pixels down every 25 milliseconds
scroll = setInterval(function(){ window.scrollBy(0, 2); }, 25)
//to remove
// clearInterval(scroll)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment