Accelerometer: y property
The y
read-only property of the Accelerometer
interface returns a number specifying the acceleration of the device along its y-axis.
Value
Examples
Acceleration is typically read in the reading
event callback. In the example below this occurs sixty times a second.
const accelerometer = new Accelerometer({ frequency: 60 });
accelerometer.addEventListener("reading", (e) => {
console.log(`Acceleration along the X-axis ${accelerometer.x}`);
console.log(`Acceleration along the Y-axis ${accelerometer.y}`);
console.log(`Acceleration along the Z-axis ${accelerometer.z}`);
});
accelerometer.start();
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
y |
67 |
79 |
No |
No |
54 |
No |
67 |
67 |
No |
48 |
No |
9.0 |