WheelEvent
open class WheelEvent(val type: EventType<WheelEvent>, init: WheelEventInit = definedExternally) : MouseEvent(source)
The WheelEvent
interface represents events that occur due to the user moving a mouse wheel or similar input device.
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The MouseEvent.button
read-only property indicates which button was pressed or released on the mouse to trigger the event.
Link copied to clipboard
The MouseEvent.buttons
read-only property indicates which buttons are pressed on the mouse (or other input device) when a mouse event is triggered.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The MouseEvent.relatedTarget
read-only property is the secondary target for the mouse event, if there is one.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The MouseEvent.getModifierState()
method returns the current state of the specified modifier key: true
if the modifier is active (i.e., the modifier key is pressed or locked), otherwise, false
.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard