I'm trying to use Device Events eg DeviceMotionEvent and DeviceOrientationEvent but when I tried debugging why it wouldn't work on my updated device with chrome 74 is turns out the above events is not getting read and the output is undefined instead of a function.(我正在尝试使用设备事件,例如DeviceMotionEvent和DeviceOrientationEvent,但是当我尝试调试为何它无法在带有chrome 74的更新设备上运行时,上面的事件并未得到读取,并且输出未定义,而不是函数。)
window.addEventListener('devicemotion', function (evt) {
console.log(evt);
});
window.addEventListener('deviceorientation', function (evt) {
console.log(evt);
});
ask by virtualbjorn translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…