Listens for any mouse state changes.
require('mouse-change')(function(buttons, x, y) {
document.body.innerHTML =
'<p>Buttons: 0b' + buttons.toString(2) +
', x:' + x +
', y:' + y + '</p>'
})
npm i mouse-change
Listens for any mouse state changes on the given element.
element
is an optional elementonchange(buttons,x,y,mods)
is an optional callback which gets called every time that the mouse state changes insideelement
buttons
is the state of the mouse buttonsx
is the x coordinate of the mousey
is the y coordinate of the mousemods
is an object storing the state of any key modifiersmods.shift
is the state of the shift keymods.alt
is the state of then alt keymods.control
is the state of the control keymods.meta
is the state of the meta key
Returns A new listener object which can be used to configure the listener.
Toggles whether or not
The x coordinate of the mouse
The y coordinate of the mouse
The button state of the mouse
The current state of the keyboard modifiers
(c) 2015 Mikola Lysenko. MIT License