DeviceMotionEvent & DeviceOrientationEvent
最近同事的项目遇到iOS上无法开启重力感应的问题。经查是iOS对于重感事件的限制。
需要如下操作让用户授权:
// 判断系统
if (typeof DeviceMotionEvent.requestPermission === 'function') {
// iOS 13+
} else {
// non iOS 13+
}
// 事件授权
DeviceMotionEvent.requestPermission()
.then(response => {
if (response == 'granted') {
window.addEventListener('devicemotion', (e) => {
// do something with e
})
}
})
.catch(console.error)
DeviceOrientationEvent.requestPermission()
.then(response => {
if (response == 'granted') {
window.addEventListener('deviceorientation', (e) => {
// do something with e
})
}
})
.catch(console.error)
tips: 授权事件需要手动触发(点击事件等)
input 相关
iOS12会在键盘弹出时将页面上推,并压缩body的高度。
iOS13会在键盘弹出时将页面上推,但html,body的高度全部不变。