小程序開發(fā)wx.onAccelerometerChange(CALLBACK),監(jiān)聽加速度數(shù)據(jù)頻率:5次/秒
2017-12-11
導(dǎo)讀:監(jiān)聽加速度數(shù)據(jù),頻率:5次/秒,接口調(diào)用后會自動開始監(jiān)聽,可使用 wx.stopAccelerometer 停止監(jiān)聽。 CALLBACK返回參數(shù): 參數(shù) 類型 說明 x Number X 軸 y Number Y 軸 z Number Z 軸 示例代碼: wx.o...
監(jiān)聽加速度數(shù)據(jù),頻率:5次/秒,接口調(diào)用后會自動開始監(jiān)聽,可使用 wx.stopAccelerometer
停止監(jiān)聽。
CALLBACK返回參數(shù):
參數(shù) | 類型 | 說明 |
---|---|---|
x | Number | X 軸 |
y | Number | Y 軸 |
z | Number | Z 軸 |
示例代碼:
wx.onAccelerometerChange(function(res) {
console.log(res.x)
console.log(res.y)
console.log(res.z)
})
更多微信小程序開發(fā)教程,關(guān)注hi小程序。
第二部分:如何開通一個小商店