The angle in degrees between the Y-Z plane of the pointer (stylus) and the screen. The range of values is -90
to 90
, inclusive, where a positive value is a tilt to the right.
For devices that do not support this property, the value is 0
.
The angle in degrees between the Y-Z plane of the pointer (stylus) and the screen. The range of values is -90
to 90
, inclusive, where a positive value is a tilt to the right.
For devices that do not support this property, the value is 0
.
This example illustrates simple accessing of the tiltX
and tiltY
properties.
someElement.addEventListener(
"pointerdown",
(event) => {
process_tilt(event.tiltX, event.tiltY);
},
false,
);
Specification |
---|
Pointer Events # dom-pointerevent-tiltx |
BCD tables only load in the browser