cordova-plugin-device-motion加速计和cordova-plugin-device-orientation设备方向

一、cordova-plugin-device-motion加速计

这个插件提供了对设备加速度计的访问。加速度计是一种运动传感器,它检测相对于当前设备方向的运动变化(增量),在x、y和z轴上的三维变化。

这个插件的API类似地理位置API,一个获取状态getCurrentAcceleration,一个监听状态watchAcceleration

1.安装命令:

cordova plugin add cordova-plugin-device-motion


2.获取加速状态,x/y/z和当前时间戳

获取acceleration对象属性

  • x: Amount of acceleration on the x-axis. (in m/s^2) (Number)
  • y: Amount of acceleration on the y-axis. (in m/s^2) (Number)
  • z:

你可能感兴趣的:(Apache,Cordova)