onDeviceMotionChange

基础库 3.30.2 开始支持,低版本需做兼容处理。

解释:监听设备方向变化事件。频率根据 swan.startDeviceMotionListening() 的 interval 参数。可以使用 swan.stopDeviceMotionListening() 停止监听。参数:CALLBACK

CALLBACK返回参数:

参数名类型说明
alphaNumber当手机坐标 X/Y 和 地球 X/Y 重合时,绕着 Z 轴转动的夹角为 alpha,范围值为 [0, 2PI)。逆时针转动为正。
betaNumber当手机坐标 Y/Z 和地球 Y/Z 重合时,绕着 X 轴转动的夹角为 beta。范围值为 [-1PI, PI) 。顶部朝着地球表面转动为正。也有可能朝着用户为正。。
gammaNumber当手机 X/Z 和地球 X/Z 重合时,绕着 Y 轴转动的夹角为 gamma。范围值为 [-1*PI/2, PI/2)。右边朝着地球表面转动为正。

示例:

  1. swan.onDeviceMotionChange(function (res) {
    console.log(res.alpha);
    console.log(res.beta);
    console.log(res.gamma);
    });