This property is the angle (in degrees) between the Y-Z plane of the pointer and the screen. This property is typically only useful for a pen/stylus pointer type. The range of values is -90 to 90 degrees and a positive value means a tilt to the right. For devices that do not support this property, the value is 0.
For an illustration of this property see Figure 2 in the specification.
This property is Read only .
var tilt = pointerEvent.tiltX;
tiltThis example illustrates simple accessing of the tiltX and tiltY properties.
someElement.addEventListener("pointerdown", function(ev) {
process_tilt(ev.tiltX, ev.tiltY);
}, false);
| Specification | Status | Comment |
|---|---|---|
| Pointer Events – Level 2 The definition of 'tiltX' in that specification. | Working Draft | Non-stable version. |
| Pointer Events The definition of 'tiltX' in that specification. | Recommendation | Initial definition. |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 55 | 12 | 59
|
10 | 42 | No |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | 55 | 55 | 12 | No
|
42 | No | 6.0 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX