Skip to main content
Version: 1.x

Taro.onAccelerometerChange(callback)

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

参数

function callback(res)

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

参数

object res
NameTypeDescription
xnumberX 轴
ynumberY 轴
znumberZ 轴

示例代码

import Taro from '@tarojs/taro'

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

API 支持度

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