Skip to content

Instantly share code, notes, and snippets.

@seabre
Created February 10, 2013 06:43
Show Gist options
  • Save seabre/4748652 to your computer and use it in GitHub Desktop.
Save seabre/4748652 to your computer and use it in GitHub Desktop.
(auto_scroll = (start, height) ->
setTimeout (->
increment = height / 4
next_increment = start + increment
window.scrollTo start, next_increment
if next_increment < height auto_scroll(next_increment, height) else return true
), 8000
)(0, document.body.scrollHeight)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment