js로 브라우저 해상도를 자동으로 판단하는 코드

1640 단어
 
  
<br><!-- <br>if (window.navigator.userAgent.indexOf("MSIE")>=1) <br>{ <br>var IE1024=""; <br>var IE800=""; <br>var IE1152=""; <br>var IEother=""; <br>ScreenWidth(IE1024,IE800,IE1152,IEother) <br>} <br>else{ <br>if (window.navigator.userAgent.indexOf("Firefox")>=1) <br>{ <br>var Firefox1024=""; <br>var Firefox800=""; <br>var Firefox1152=""; <br>var Firefoxother=""; <br>ScreenWidth(Firefox1024,Firefox800,Firefox1152,Firefoxother) <br>} <br>else{ <br>var Other1024=""; <br>var Other800=""; <br>var Other1152=""; <br>var Otherother=""; <br>ScreenWidth(Other1024,Other800,Other1152,Otherother) <br>} <br>} <br>function ScreenWidth(CSS1,CSS2,CSS3,CSS4){ <br>if ((screen.width == 1024) && (screen.height == 768)){ <br>setActiveStyleSheet(CSS1); <br>}else{ <br>if ((screen.width == 800) && (screen.height == 600)){ <br>setActiveStyleSheet(CSS2); <br>}else{ <br>if ((screen.width == 1152) && (screen.height == 864)){ <br>setActiveStyleSheet(CSS3); <br>}else{ <br>setActiveStyleSheet(CSS4); <br>}}} <br>} <br>function setActiveStyleSheet(title){  <br>document.getElementsByTagName("link")[0].href="style/"+title;  <br>} <br>//--> <br> 

좋은 웹페이지 즐겨찾기