建站软件 优化软件 编程软件 网页辅助 站群程序 网站程序 图像处理 资源教程 字体下载 推荐软件


您的位置:首页 > html教程 > 怎么根据浏览器分辨率不同调用不用的样式

怎么根据浏览器分辨率不同调用不用的样式

时间:2015-09-20 12:06:12  来源:免费模板网 作者:风雪 阅读次数 tagscss

现在的浏览器和显示设备很多,电脑,平板,各种不同尺寸的显示器。那怎么制作兼容多平台的网站呢,现在有响应式网站,根据js来判断显示不同的css样式。见下面代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>根据判断浏览器类型屏幕分辨率自动调用不同CSS的代码</title> 
<link href="" _fcksavedurl="""" rel="stylesheet" type="text/css" /> 
<script language="jscript">... 
if (window.navigator.userAgent.indexOf("MSIE")>=1) 
...{ 
var IE1024="style1.css"; 
var IE800="style2.css"; 
var IE1152="css1.css"; 
var IEother="css1.css"; 
ScreenWidth(IE1024,IE800,IE1152,IEother) 
}else...{ 
if (window.navigator.userAgent.indexOf("Firefox")>=1) 
...{ 
//如果浏览器为Firefox 
var Firefox1024="style1"; 
var Firefox800="style2.css"; 
var Firefox1152="css1.css"; 
var Firefoxother="css1.css"; 
ScreenWidth(Firefox1024,Firefox800,Firefox1152,Firefoxother) 
}else...{ 
//如果浏览器为其他 
var Other1024="css1.css"; 
var Other800="css1.css"; 
var Other1152="css1.css"; 
var Otherother="css1.css"; 
ScreenWidth(Other1024,Other800,Other1152,Otherother) 


function ScreenWidth(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); 
}}} 

function setActiveStyleSheet(title)...{document.getElementsByTagName("link")[0].href=""+title;} 
</script> 
</head> 
<body> 
</body> 
</html>

本文地址:https://www.freemoban.com/htmljc/2015/0920/2447.html

猜你喜欢
栏目推荐
模板推荐

Copyright:www.freemoban.com 免费模板网 All Rights Reserved 网站备案:辽ICP备19014872号-2   辽公网安备 21010602000376号  辽公网安备:42900402000182号

免责声明:本站部分资源来自互联网收集,版权归原创者所有,如果侵犯了你的权益,我们会及时删除侵权内容,联系QQ:1615187561 谢谢合作!