WeChat 미니 프로그램 API 중력 감지


wx.onAccelerometerChange(CALLBACK)


중력 감지 데이터 모니터링, 빈도: 5회/초

CALLBACK 반환 매개변수: # 🎜🎜#

QQ截图20170208114315.png

샘플 코드:

wx.onAccelerometerChange(function(res) {
  console.log(res.x)
  console.log(res.y)
  console.log(res.z)
})