1. 程式人生 > >移動端--判斷橫豎屏

移動端--判斷橫豎屏

on() list change cas spa orien type tno nta

(function(){
var supportOrientation = (typeof window.orientation === ‘number‘ &&
typeof window.onorientationchange === ‘object‘);
var init = function(){
var htmlNode = document.body.parentNode,
orientation;
var updateOrientation = function(){
if(supportOrientation){
orientation = window.orientation;
switch(orientation){ case 90: case -90: orientation = ‘landscape‘; break; default: orientation = ‘portrait‘; break; } }else{ orientation = (window.innerWidth > window.innerHeight) ? ‘landscape‘ : ‘portrait‘; } htmlNode.setAttribute(‘class‘,orientation); }; if(supportOrientation){ window.addEventListener(
‘orientationchange‘,updateOrientation,false); }else{ //監聽resize事件 window.addEventListener(‘resize‘,updateOrientation,false); } updateOrientation(); }; window.addEventListener(‘DOMContentLoaded‘,init,false); })();

移動端--判斷橫豎屏