Skip to content

Instantly share code, notes, and snippets.

@xincici
Created February 9, 2015 02:57
Show Gist options
  • Save xincici/9db0d4a4d86542e09031 to your computer and use it in GitHub Desktop.
Save xincici/9db0d4a4d86542e09031 to your computer and use it in GitHub Desktop.
mouse wheel event handle
function wheelHandle(e) {
if(e.wheelDelta) {// IE, KHTML, Opera
alert(e.wheelDelta > 0 ? '向上滚' : '向下滚');
} else { // Gecko
alert(e.detail < 0 ? '向上滚' : '向下滚');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment