my.offdevicemotionchange(function listener)
基础库 或更高版本; 若版本较低,建议采取 兼容处理 。
主体: 企业支付宝小程序 、 个人支付宝小程序
移除设备方向变化事件的监听函数。
function listener
ondevicemotionchange 传入的监听函数。不传此参数则移除所有监听函数
my.offdevicemotionchange(function callback)
移除所有监听
// 定义监听函数
var listener = function (res) {
console.log(res.alpha);
console.log(res.beta);
console.log(res.gamma);
}
// 添加设备方向变化事件的监听函数
my.offdevicemotionchange(this.listener);
// 移除 listener
my.offdevicemotionchange(this.listener)
my.offdevicemotionchange()