Files
librenms-librenms/README.markdown

25 lines
912 B
Markdown
Raw Normal View History

2008-10-15 20:35:05 -05:00
# jQuery Mouse Wheel Plugin
A jQuery plugin that adds cross-browser mouse wheel support.
In order to use the plugin, simply bind the "mousewheel" event to an element. It also provides two helper methods called `mousewheel` and `unmousewheel` that act just like other event helper methods in jQuery. The event callback receives three extra arguments which are the normalized "deltas" of the mouse wheel.
2010-02-12 17:05:51 -06:00
Here is an example of using both the bind and helper method syntax.
// using bind
$('#my_elem').bind('mousewheel', function(event, delta, deltaX, deltaY) {
console.log(delta, deltaX, deltaY);
2010-02-12 17:05:51 -06:00
});
2010-02-12 17:05:51 -06:00
// using the event helper
$('#my_elem').mousewheel(function(event, delta, deltaX, deltaY) {
console.log(delta, deltaX, deltaY);
2010-02-12 17:05:51 -06:00
});
2008-10-15 20:35:05 -05:00
## License
2011-10-27 11:19:28 -05:00
This plugin is licensed under the MIT License (LICENSE.txt).
2008-10-15 20:35:05 -05:00
Copyright (c) 2013 [Brandon Aaron](http://brandonaaron.net)