1. 手势

    横竖屏切换事件 (orientation)

  1. window.addEventListener('orientationchange',()=>{
  2. if(window.orientation==90 || window.orientation==-90){
  3. alert('横屏');
  4. }else if(window.orientation==0 || window.orientation==180){
  5. alert('竖屏');
  6. }
  7. });

重力加速度事件 (devicemotion)

image.png