DeviceMotionEvent: accelerationIncludingGravity property
Baseline 2023
Newly available
Since September 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The accelerationIncludingGravity
read-only property of the DeviceMotionEvent
interface returns the
amount of acceleration recorded by the device, in meters per second squared (m/s²). 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 an acceleration equal and opposite to that
caused by gravity. In other words, it measures the
g-force. In practice, this value represents
the raw data measured by an accelerometer.
This value is not typically as useful as DeviceMotionEvent.acceleration
,
but may be the only value available on devices that aren't able to remove gravity from
the acceleration data, such as on devices that don't have a gyroscope.
Note: accelerationIncludingGravity
's name can be misleading. This property represents acceleration including the effects of gravity. For example, if a device is lying flat on a horizontal surface with the screen pointing up, gravity would be -9.8 along the Z axis, while acceleration.z
would be 0 and accelerationIncludingGravity.z
would be 9.8. Similarly, if a device is in free fall with its screen horizontal and pointing up, gravity would be -9.8 along the Z axis, while acceleration.z
would be -9.8 and accelerationIncludingGravity.z
would be 0.
Value
The accelerationIncludingGravity
property is an object providing
information about acceleration on three axis. Each axis is represented with its own
property:
Specifications
Specification |
---|
Device Orientation and Motion # ref-for-dom-devicemotionevent-accelerationincludinggravity④ |
Browser compatibility
BCD tables only load in the browser