The accelerationIncludingGravity
property returns the amount of acceleration recorded by the device, in meters per second squared (m/s2). Unlike DeviceMotionEvent.acceleration
which compensates for the influence of gravity, its value is the sum of the acceleration of the device as induced by the user and the acceleration caused by gravity.
This value is not typically as useful as DeviceMotionEvent.acceleration
, but may be the only value available on devices that aren't able of removing gravity from the acceleration data, such as on devices that don't have a gyroscope.
var acceleration = instanceOfDeviceMotionEvent.accelerationIncludingGravity;
The accelerationIncludingGravity
property is an object providing information about acceleration on three axis. Each axis is represented with its own property:
x
y
z
Specification | Status | Comment |
---|---|---|
Device Orientation Events | Working Draft | Initial specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 6 | ? | ? | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 6 | No | 4.2 | ? |
DeviceMotionEvent.acceleration
devicemotion
window.ondevicemotion
deviceorientation
DeviceOrientationEvent
© 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/DeviceMotionEvent/accelerationIncludingGravity