Baseline 2024
Newly available
The altitudeAngle
read-only property of the PointerEvent
interface represents the angle between a transducer (a pointer or stylus) axis and the X-Y plane of a device screen. The altitude angle describes whether the transducer is perpendicular to the screen, parallel, or at some angle in between.
Depending on the specific hardware and platform, user agents will likely only receive one set of values for the transducer orientation relative to the screen plane â either tiltX
and tiltY
or altitudeAngle
and azimuthAngle
.
For an additional illustration of this property, see Figure 4 in the specification.
ValueAn angle in radians between 0
and Ï/2
where 0
is parallel to the device surface (X-Y plane), and Ï/2
is perpendicular to the surface. Defaults to Ï/2
(perpendicular to the surface) which differs from the altitudeAngle
in touch events which defaults to 0
(parallel to the surface). For hardware and platforms that do not report tilt or angle, the value is Ï/2
.
someElement.addEventListener(
"pointerdown",
(event) => {
process_angles(event.altitudeAngle, event.azimuthAngle);
},
false,
);
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4