Skip to content

Instantly share code, notes, and snippets.

@CheesecakeCG
Created September 19, 2021 08:24
Show Gist options
  • Save CheesecakeCG/5aa09c478696c65f30f48860ecd219d9 to your computer and use it in GitHub Desktop.
Save CheesecakeCG/5aa09c478696c65f30f48860ecd219d9 to your computer and use it in GitHub Desktop.
Autoscroll on a webpage
const interval = setInterval(function() {
window.scrollTo(0, window.scrollMaxY + 500);
}, 500);
clearInterval(interval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment