手机端页面监测横屏竖屏

在做手机端网页时,如果没有做横竖屏自适应,那么横竖屏监测是个很好的用户体验@#¥%……%*&……%代码:

1
2
3
4
5
6
7
8
var updateOrientation = function(){
if(window.orientation == '-90' || window.orientation == '90'){
alert("请将手机竖屏");
}else{
alert("现在是竖屏");
}
}
window.onorientationchange = updateOrientation;