Version: 1.xTaro.onAccelerometerChange(callback)监听加速度数据事件。频率根据 startAccelerometer() 的 interval 参数。可使用 stopAccelerometer() 停止监听。参数#function callback(res)#加速度数据事件的回调函数。参数#object res#NameTypeDescriptionxnumberX 轴ynumberY 轴znumberZ 轴示例代码#import Taro from '@tarojs/taro' Taro.onAccelerometerChange(res => { console.log(res.x) console.log(res.y) console.log(res.z)})CopyAPI 支持度#API微信小程序H5React NativeTaro.onAccelerometerChange✔️✔️✔️