Skip to content

Instantly share code, notes, and snippets.

@izumskee
Created April 15, 2015 20:05
Show Gist options
  • Save izumskee/af1a7469b9bbfc287464 to your computer and use it in GitHub Desktop.
Save izumskee/af1a7469b9bbfc287464 to your computer and use it in GitHub Desktop.
Calculate Scroll Speed
// Calculate Scroll Speed
var lastOffset = $(window).scrollTop();
var lastDate = new Date().getTime();
$(window).scroll(function(e) {
var delayInMs = e.timeStamp - lastDate;
var offset = scrollTopValue - lastOffset;
var speedInpxPerMs = offset / delayInMs;
var scrollSpeed = Math.abs(speedInpxPerMs.toFixed(2));
console.log(scrollSpeed);
lastDate = e.timeStamp;
lastOffset = scrollTopValue;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment