iOS 12.2+ 与 iOS 13 h5无法开启重力感应(摇一摇等)

https://stackoverflow.com/questions/56514116/how-do-i-get-deviceorientationevent-and-devicemotionevent-to-work-on-safari

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的高度全部不变。

你可能感兴趣的:(苹果手机,重力感应问题)