Pointers
todo: examples
Manages pointer events, including tracking multiple pointers, and emitting callbacks for pointer interactions.
For proper functionality, ensure the container has an appropriate touch-action property.
Props
Static Props
Static properties are set during initialization and cannot be modified later.
Name | Description | Type | Default Value |
---|---|---|---|
container | The element that listens for pointer events. | HTMLElement | |
relative | Calculate coordinates relative to the container. | boolean | false |
buttons | Determines which mouse buttons trigger events.
See MouseEvent.button. | number[] | [0] |
minPointers | Minimum number of active pointers required to trigger the "start" callback. | number | 1 |
maxPointers | Maximum number of pointers that can be tracked simultaneously. | number | 5 |
Mutable Props
Mutable properties can be updated at runtime using .updateProps()
.
Name | Description | Type | Default Value |
---|---|---|---|
enabled | Enables or disables pointer events. | boolean | true |
Accessors
All Module's accessors are available in this class.
container
Type: HTMLElement
Returns the container element handling events.
isStarted
Type: boolean
Indicates whether the start
event has been triggered.
maxPointers
Type: number
Returns the maximum number of pointers that can be tracked.
minPointers
Type: number
Returns the minimum number of pointers required to trigger events.
pointersMap
Type: Map<number, IPointersItem>
Returns the map of active pointers.
IPointersItem Structure
interface IPointersItem {
id: number;
index: number;
start: IPointersVec2;
prev: IPointersVec2;
current: IPointersVec2;
diff: IPointersVec2;
step: IPointersVec2;
accum: IPointersVec2;
}
id
: Unique pointer identifier.index
: Index assigned to the pointer.start
: Coordinates at the start of the interaction.prev
: Previous recorded coordinates.current
: Current pointer coordinates.diff
: Movement offset from the starting position.step
: Movement offset from the previous position.accum
: Total accumulated movement since start
IPointersVec2 Structure
interface IPointersVec2 {
x: number;
y: number;
}
x
: X-coordinate relative to the container.y
: X-coordinate relative to the container.
Methods
All Module's methods are available in this class.
Callbacks
All Module's callbacks are available in this class.
start
Fired when the required number of pointers is reached.
const destruct = instance.on('start', () => console.log('start'));
// Cancel the callback
destruct();
pointerdown
Fired when a pointer is added.
const destruct = instance.on('pointerdown', ({ event, pointer }) => console.log('pointerdown'));
// Cancel the callback
destruct();
pointermove
Fired when a pointer moves.
const destruct = instance.on('pointermove', ({ event, pointer }) => console.log('pointermove'));
// Cancel the callback
destruct();
pointerup
Fired when a pointer is removed.
const destruct = instance.on('pointerup', ({ pointer }) => console.log('pointerup'));
// Cancel the callback
destruct();
end
Fired when pointer events are canceled.
const destruct = instance.on('end', () => console.log('end'));
// Cancel the callback
destruct();