磁力计:x 属性
x
是 Magnetometer
接口的只读属性,它返回一个数字,该数字指定设备 x 轴周围的磁场。
价值
一个 Number
。
示例
磁力计通常在 读数
事件回调中读取。在下面的示例中,这每秒发生 60 次。
js
let magSensor = new Magnetometer({ frequency: 60 });
magSensor.addEventListener("reading", (e) => {
console.log(`Magnetic field along the X-axis ${magSensor.x}`);
console.log(`Magnetic field along the Y-axis ${magSensor.y}`);
console.log(`Magnetic field along the Z-axis ${magSensor.z}`);
});
magSensor.start();
规范
规范 |
---|
磁力计 # magnetometer-x |
浏览器兼容性
BCD 表仅在浏览器中加载