Skip to main content
Version: 下个版本

Taro.onAccelerometerChange(callback)

监听加速度数据,频率:5次/秒,接口调用后会自动开始监听,可使用 Taro.stopAccelerometer 停止监听。

参考文档

类型#

(callback: Callback) => void

参数#

Callback#

(res: Result) => void
参数类型
resResult

Result#

参数类型说明
xnumberX 轴
ynumberY 轴
znumberZ 轴

示例代码#

Taro.onAccelerometerChange(res => {
console.log(res.x)
console.log(res.y)
console.log(res.z)
})

API 支持度#

API微信小程序H5React Native
Taro.onAccelerometerChange✔️✔️✔️