Events
VRender designs the DOM event model and API as a reference standard, providing a series of default element-based events. The underlying VRender is compatible with different browser versions, providing unified events. Supported event types include pointer events, mouse events, touch events, and wheel events.
- Pointer Events
- pointerdown
- pointerup
- pointerupoutside
- pointertap
- pointerover
- pointerenter
- pointerleave
- pointerout
- Left Mouse Button Operations
- mousedown
- mouseup
- mouseupoutside (the shape is different when the mouse is up and down)
- Right Mouse Button Operations
- rightdown
- rightup
- rightupoutside (the shape is different when the mouse is up and down)
- Mouse Operations
- click
- mousemove
- mouseover
- mouseout
- mouseenter
- mouseleave
- Scrolling
- wheel
- Touch Events
- touchstart
- touchend
- touchendoutside
- touchmove
- touchcancel
- tap
- Wildcard Event
- *
Listening and Delegating
VRender can directly listen to and handle events for elements, supporting the addEventListener
and removeEventListener
methods, with parameters consistent with the DOM. It supports using in the capturing phase or bubbling phase:
Additionally, VRender also supports event delegation, where any node can directly delegate to child elements. You can determine the element that actually triggers the event through the target
in the Event. Below is an example of event delegation.
【Note】: It is important to note that the event objects thrown by VRender are reusable, so be careful not to save event objects for later use, as the event object will change. This is particularly important to note in asynchronous processes.