This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The DeviceOrientationEvent
provides web developers with information from the physical orientation of the device running the web page.
Warning: Currently, Firefox and Chrome do not handle the coordinates the same way. Take care about this while using them.
DeviceOrientationEvent.DeviceOrientation()
DeviceOrientationEvent
.DeviceOrientationEvent.absolute
Read only
DeviceOrientationEvent.alpha
Read only
DeviceOrientationEvent.beta
Read only
DeviceOrientationEvent.gamma
Read only
window.addEventListener('deviceorientation', function(event) { console.log(event.alpha + ' : ' + event.beta + ' : ' + event.gamma); });
Specification | Status | Comment |
---|---|---|
Device Orientation Events | Working Draft | Initial specification. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 7.0 [1] | (Yes) | 6 [2] | ? | ? | ? |
Constructor | 59 | ? | ? | ? | ? | ? |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | (Yes) [1] | (Yes) [1] | (Yes) | 6 [2] | No support | No support | 4.2 |
Constructor | 59 | 59 | ? | ? | ? | ? | ? |
[1] Before version 50, Chrome provided absolute values instead of relative values for this event. Developers still needing absolute values may use the ondeviceorientationabsolute
event.
[2] Firefox 3.6, 4, and 5 supported mozOrientation instead of the standard DeviceOrientationEvent
interface
deviceorientation
DeviceMotionEvent
devicemotion
© 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/DeviceOrientationEvent