OrientationSensor
接口的
Sensor APIs
is the base class for orientation sensors. This interface cannot be used directly. Instead it provides properties and methods accessed by interfaces that inherit from it.
If a feature policy blocks use of a feature it is because your code is inconsistent with the policies set on your server. This is not something that would ever be shown to a user. See
Feature-Policy
for implementation instructions.
Below is a list of interfaces based on the OrientationSensor interface.
OrientationSensor.quaternion
数组
whose elements contain the components of the unit quaternion representing the device's orientation.
OrientationSensor.populateMatrix()
Populates the given object with the rotation matrix based on the latest sensor reading. The rotation maxtrix is shown below.
The following example, which is loosely based on
Intel's Orientation Phone demo
, instantiates an
AbsoluteOrientationSensor
with a frequency of 60 times a second. On each reading it uses
OrientationSensor.quaternion
to rotate a visual model of a phone.
const options = { frequency: 60, referenceFrame: 'device' };
const sensor = new AbsoluteOrientationSensor(options);
sensor.addEventListener('reading', () => {
// model is a Three.js object instantiated elsewhere.
model.quaternion.fromArray(sensor.quaternion).inverse();
});
sensor.addEventListener('error', error => {
if (event.error.name == 'NotReadableError') {
console.log("Sensor is not available.");
}
});
sensor.start();
Using orientation sensors requires requsting permissions for multiple device sensors. Becuase the
权限
uses promises, a good way to request permissions is to use
Promise.all
.
const sensor = new AbsoluteOrientationSensor();
Promise.all([navigator.permissions.query({ name: "accelerometer" }),
navigator.permissions.query({ name: "magnetometer" }),
navigator.permissions.query({ name: "gyroscope" })])
.then(results => {
if (results.every(result => result.state === "granted")) {
sensor.start();
...
} else {
console.log("No permissions to use AbsoluteOrientationSensor.");
}
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
Orientation Sensor
The definition of 'OrientationSensor' in that specification. |
候选推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
OrientationSensor
|
Chrome 69 | Edge ≤79 | Firefox ? | IE ? | Opera 56 | Safari ? | WebView Android 69 | Chrome Android 69 | Firefox Android ? | Opera Android 48 | Safari iOS ? | Samsung Internet Android 10.0 |
populateMatrix
|
Chrome 69 | Edge ≤79 | Firefox ? | IE ? | Opera 56 | Safari ? | WebView Android 69 | Chrome Android 69 | Firefox Android ? | Opera Android 48 | Safari iOS ? | Samsung Internet Android 10.0 |
quaternion
|
Chrome 69 | Edge ≤79 | Firefox ? | IE ? | Opera 56 | Safari ? | WebView Android 69 | Chrome Android 69 | Firefox Android ? | Opera Android 48 | Safari iOS ? | Samsung Internet Android 10.0 |
完整支持
兼容性未知