|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
现在YAHOO,MSN等国际门户网站,网易,新浪等国内门户网站,和主流的WEB2.0网站,均采用DIV+CSS的框架模式,更加印证了DIV+CSS是大势所趋。
<SCRIPTLANGUAGE="javascript">
<!--
if(window.navigator.userAgent.indexOf("MSIE")>=1)
{
varIE1024="";
varIE800="";
varIE1152="";
varIEother="";
ScreenWidth(IE1024,IE800,IE1152,IEother)
}else{
if(window.navigator.userAgent.indexOf("Firefox")>=1)
{
file://假如扫瞄器为Firefox
varFirefox1024="";
varFirefox800="";
varFirefox1152="";
varFirefoxother="";
ScreenWidth(Firefox1024,Firefox800,Firefox1152,Firefoxother)
}else{
file://假如扫瞄器为其他
varOther1024="";
varOther800="";
varOther1152="";
varOtherother="";
ScreenWidth(Other1024,Other800,Other1152,Otherother)
}
}
functionScreenWidth(CSS1,CSS2,CSS3,CSS4){
if((screen.width==1024)&&(screen.height==768)){
setActiveStyleSheet(CSS1);
}else{
if((screen.width==800)&&(screen.height==600)){
setActiveStyleSheet(CSS2);
}else{
if((screen.width==1152)&&(screen.height==864)){
setActiveStyleSheet(CSS3);
}else{
setActiveStyleSheet(CSS4);
}}}
}
functionsetActiveStyleSheet(title){
document.getElementsByTagName("link")[0].href="style/"+title;
}
file://-->
</SCRIPT>
【解释】:
varIE1024="";
varIE800="";
varIE1152="";
varIEother="";
引号内里分离填写,用户利用IE的时分而且分辩率为1024*768,800*600,1152*864要利用的css文件名。
varFirefox1024="";
varFirefox800="";
varFirefox1152="";
varFirefoxother="";
引号内里分离填写,用户利用FF的时分而且分辩率为1024*768,800*600,1152*864要利用的css文件名。
varOther1024="";
varOther800="";
varOther1152="";
varOtherother="";
引号内里分离填写,用户利用其他扫瞄器的时分而且分辩率为1024*768,800*600,1152*864要利用的css文件名。
不判别分辩率,只判别扫瞄器
应E.Qiang发起,编以下代码。完成依据扫瞄器范例主动挪用分歧CSS。
代码:
<SCRIPTLANGUAGE="javascript">
<!--
if(window.navigator.userAgent.indexOf("MSIE")>=1)
{
file://假如扫瞄器为IE
setActiveStyleSheet("default.css");
}else{
if(window.navigator.userAgent.indexOf("Firefox")>=1)
{
file://假如扫瞄器为Firefox
setActiveStyleSheet("default2.css");
}else{
file://假如扫瞄器为其他
setActiveStyleSheet("newsky.css");
}
}
functionsetActiveStyleSheet(title){
document.getElementsByTagName("link")[0].href="style/"+title;
}
file://-->
</SCRIPT>
解释:
假如扫瞄器为IE,则挪用default.css
假如扫瞄器为Firefox,则挪用default2.css
假如扫瞄器为其他,则挪用newsky.css
用法:放在<head></head>中便可
</p>
你的设计不仅仅用于web浏览器,也可以发布在其他设备上,比如PowerPoint。 |
|