This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('body').on('mousewheel DOMMouseScroll', function(e){ | |
if(typeof e.originalEvent.detail == 'number' && e.originalEvent.detail !== 0) { | |
if(e.originalEvent.detail > 0) { | |
console.log('Down'); | |
} else if(e.originalEvent.detail < 0){ | |
console.log('Up'); | |
} | |
} else if (typeof e.originalEvent.wheelDelta == 'number') { | |
if(e.originalEvent.wheelDelta < 0) { | |
console.log('Down'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
VERSION: 1.0 DATE:2009/11/20 | |
ACTIONSCRIPT VERSION: 3.0 | |
AUTHOR: DFdou, [email protected] | |
Copyright 2009, nwhy.org. All rights reserved. | |
DESCRIPTION: | |
Captcha is a simple class to generate Caphtcha Sprite. | |
PARAMETERS: |