Skip to content

Instantly share code, notes, and snippets.

@ahgood
Forked from OpenGrid/gist:1620783
Last active August 29, 2015 14:13
Show Gist options
  • Save ahgood/ee677ba5877f418fdb49 to your computer and use it in GitHub Desktop.
Save ahgood/ee677ba5877f418fdb49 to your computer and use it in GitHub Desktop.
document.addEventListener("mousewheel", function( event ) {
next = steps.indexOf( active ) - event.wheelDelta / Math.abs(event.wheelDelta);
next = next >= 0 ? steps[ next ] : steps[ steps.length-1 ];
select(next);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment