Skip to content

Instantly share code, notes, and snippets.

@g4b0
Forked from nbriz/gist:a953329e41afaef392d0
Last active February 22, 2016 13:00
Show Gist options
  • Select an option

  • Save g4b0/208d4bd4baa605048ddf to your computer and use it in GitHub Desktop.

Select an option

Save g4b0/208d4bd4baa605048ddf to your computer and use it in GitHub Desktop.
quickscroll.js
var scrolling=true;
function quickScroll() {
window.scrollBy(0,100);
if(scrolling){ setTimeout(quickScroll,10)}
};
quickScroll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment