Skip to content

Instantly share code, notes, and snippets.

@alana314
Created April 20, 2018 22:55
Show Gist options
  • Save alana314/9307948882085c958c5b9496def940b7 to your computer and use it in GitHub Desktop.
Save alana314/9307948882085c958c5b9496def940b7 to your computer and use it in GitHub Desktop.
Auto scroll website
//Paste this in console (in another window) to auto-scroll a website, useful for video capturing.
var i = 0;setInterval(function(){window.scrollTo(0, i);i = i+ 2;}, 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment