Skip to content

Instantly share code, notes, and snippets.

@Quinten
Created June 9, 2015 14:00
Show Gist options
  • Save Quinten/791e49ba46423fb6cbb5 to your computer and use it in GitHub Desktop.
Save Quinten/791e49ba46423fb6cbb5 to your computer and use it in GitHub Desktop.
smooth scroll script
var scrollVal = 0;
setInterval(function () {
scrollVal += 3;
jQuery('body').scrollTop(scrollVal);
},17);
@Quinten
Copy link
Author

Quinten commented Jun 9, 2015

Simple script to paste in the browser's console to simulate scrolling. Usefull when you want to capture the page in a Quicktime movie...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment