Taro.onAccelerometerChange(callback)

监听加速度数据事件。频率根据 startAccelerometer()interval 参数。可使用 stopAccelerometer() 停止监听。

参数

function callback(res)

加速度数据事件的回调函数。

参数

object res
NameTypeDescription
xnumberX 轴
ynumberY 轴
znumberZ 轴

示例代码

  1. import Taro from '@tarojs/taro'
  2. Taro.onAccelerometerChange(res => {
  3. console.log(res.x)
  4. console.log(res.y)
  5. console.log(res.z)
  6. })

API 支持度

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