Skip to content

Instantly share code, notes, and snippets.

@codeimpossible
Created May 9, 2013 17:08
Show Gist options
  • Save codeimpossible/5548913 to your computer and use it in GitHub Desktop.
Save codeimpossible/5548913 to your computer and use it in GitHub Desktop.
give the gift of flatulence
// use this on any page with fartscroll -> http://theonion.github.io/fartscroll.js/
setInterval((function() {
var rangeUpper = 100;
$("body").fartscroll(100);
return function() {
var randomnumber = Math.floor( Math.random() * rangeUpper ),
mod = 1;
if( $(document).height() - $(window).scrollTop() - $(window).height() <= 0 ) {
mod = -1;
}
$(window).scrollTop( $(window).scrollTop() + (randomnumber * mod) );
};
})(), 250);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment