|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
CSS非常容易编写。你可以象写html代码一样轻松地编写CSS。
DIVCSS教程:判别用户分辩率挪用分歧的CSS款式文件
(未测试来自收集请自行考证)
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>中便可。
<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>
业界越来越关注DIV+CSS的标准化设计,大到各大门户网站,小到不计其数的个人网站。 |
|