The WheelEvent() constructor returns a new WheelEvent object.
Note: If you construct a synthetic event using this constructor, that event will not be trusted, for security reasons. Only browser-generated WheelEvent objects are trusted and only trusted events trigger default actions.
new WheelEvent(type)
new WheelEvent(type, options)typeA string with the name of the event. It is case-sensitive and browsers always set it to wheel.
options OptionalAn object that, in addition of the properties defined in MouseEvent(), can have the following properties:
deltaX OptionalA floating number representing the horizontal scroll amount in the deltaMode unit. It defaults to 0.0.
deltaY OptionalA floating number representing the vertical scroll amount in the deltaMode unit. It defaults to 0.0.
deltaZ OptionalA floating number representing the scroll amount for the z-axis scroll amount in the deltaMode unit. It defaults to 0.0.
deltaMode OptionalAn integer representing the unit of the delta values scroll amount. It defaults to 0x00. Permitted values are:Constant Value Description DOM_DELTA_PIXEL0x00The delta values are specified in pixels. DOM_DELTA_LINE0x01The delta values are specified in lines. DOM_DELTA_PAGE0x02The delta values are specified in pages.
A new WheelEvent object.
WheelEvent interface it belongs to.