标签:dsc bsp object logs parent body lan code case
(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); })();
标签:dsc bsp object logs parent body lan code case
原文地址:http://www.cnblogs.com/huangmin1992/p/7515595.html