I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Registrati per tradurlo tu.
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
The DeviceOrientationEvent provides web developers with information from the physical orientation of the device running the web page.
Warning: Currently, Firefox and Chrome does not handle the coordinates the same way. Take care about this while using them.
Properties
DeviceOrientationEvent.absoluteRead only- A boolean that indicates whether or not the device is providing orientation data absolutely.
DeviceOrientationEvent.alphaRead only- A number representing the motion of the device around the z axis, express in degrees with values ranging from 0 to 360
DeviceOrientationEvent.betaRead only- A number representing the motion of the device around the x axis, express in degrees with values ranging from -180 to 180. This represents a front to back motion of the device.
DeviceOrientationEvent.gammaRead only- A number representing the motion of the device around the y axis, express in degrees with values ranging from -90 to 90. This represents a left to right motion of the device.
Example
window.addEventListener('deviceorientation', function(event) {
console.log(event.alpha + ' : ' + event.beta + ' : ' + event.gamma);
});
Specifications
| Specification | Status | Comment |
|---|---|---|
| Device Orientation Events | Working Draft | Initial specification. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | 7.0 | 6 [1] | ? | ? | ? |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | 3.0 | 6 [1] | Not supported | Not supported | 4.2 |
[1] Firefox 3.6, 4, and 5 supported mozOrientation instead of the standard DeviceOrientationEvent interface
See also
Etichette del documento e nomi di chi ha collaborato alla sua stesura
Etichette:
Contributors to this page: fscholz, kollishivagangadhar, teoli, Maroosko, kscarfone, justinpotts, Jeremie
Ultima modifica di:
fscholz,

