Mouse Wheel
Rob Loach - December 5, 2008 - 02:46
A small utility module that allows registration of mouse wheel events through the Mouse Wheel jQuery Plugin.
Usage
To register a mouse wheel event, simply call the mousewheel_add() function. The following would show an alert box whenever you mouse wheel on the box. See admin/help/mousewheel for more examples.
<?php
// Create the object.
echo '<div id="mousewheel-test" style="width:100px; height:100px; background-color:#333;">' . t('Move your mouse wheel here.') . '</div>';
// Create the callback.
$mousewheel_test = 'function mousewheel_test(event, delta) {
alert("Delta: " + delta);
return false; // Prevent default.
}';
drupal_add_js($mousewheel_test, 'inline');
// Register the callback.
mousewheel_add('#mousewheel-test', 'mousewheel_test');
?>Releases
| Official releases | Date | Size | Links | Status | |
|---|---|---|---|---|---|
| 6.x-1.3 | 2009-Jun-12 | 9.95 KB | Download · Release notes | Recommended for 6.x | |
| Development snapshots | Date | Size | Links | Status | |
|---|---|---|---|---|---|
| 6.x-1.x-dev | 2009-Jun-13 | 9.95 KB | Download · Release notes | Development snapshot | |
