Files
librenms-librenms/README.markdown

32 lines
1.0 KiB
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.
```js
// using bind
$('#my_elem').bind('mousewheel', function(event, delta, deltaX, deltaY) {
console.log(delta, deltaX, deltaY);
});
// 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
## See it in action
[See the tests on Github](http://brandonaaron.github.com/jquery-mousewheel/test) or navigate to `test/index.html` in your browser.
2008-10-15 20:35:05 -05:00
## License
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)