Skip to content

Instantly share code, notes, and snippets.

@OpenGrid
Created January 16, 2012 13:07
Show Gist options
  • Save OpenGrid/1620783 to your computer and use it in GitHub Desktop.
Save OpenGrid/1620783 to your computer and use it in GitHub Desktop.
Impress.js mouse wheel event for changing slides
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