h5 监听 横竖屏 旋转

来源:互联网 发布:郑州大学软件技术学院 编辑:程序博客网 时间:2024/06/07 19:23

h5监听横竖屏旋转:

function orientate() {  if (global.orientation === 90 || global.orientation === -90) {    alert('cross')  } else {    alert('vertical')  }}global.addEventListener('onorientationchange' in global ? 'orientationchange' : 'resize', orientate, false)
原创粉丝点击