A standalone javascript library for cross-browser mouse wheel support.
npm install hamsterjsHamster.js
==========
A standalone javascript library for cross-browser mouse wheel support.
Usage
-----
The event callback receives 3 extra arguments which are the normalized “deltas” of the mouse wheel.
``js
var hamster = Hamster(el);
hamster.wheel(function(event, delta, deltaX, deltaY){
console.log(delta, deltaX, deltaY);
});
// destroy
hamster.unwheel();
``
Support
-------
No jQuery or other libraries required, but an adapter for AngularJS is available.
Tested in these core browsers.
Install
-------
bower install hamsterjs
Demo
----
monospaced.github.io/hamster.js
Reference
---------