如何根据分辨率调用不同的css文件

 我来答
百度网友4513f99a
2016-11-21 · 知道合伙人软件行家
百度网友4513f99a
知道合伙人软件行家
采纳数:128 获赞数:292
kkfor网站站长

向TA提问 私信TA
展开全部

css具有媒体响应功能,可以判断屏幕宽度,从而加载设置的css

如下代码,当宽度小于1000px的时候加载css下的css-mobile.css

<link href="css/css-mobile.css" rel="stylesheet" type="text/css" media="screen and (max-width: 1000px)">

 如下代码,当宽度大于1000px的时候加载css下的css-pc.css

<link href="css/css-pc.css" rel="stylesheet" type="text/css" media="screen and (min-width: 1000px)">
匿名用户
推荐于2017-12-16
展开全部

可以判断当前屏幕分辨率,然后再给予对应的css文件路径,如:

html:

<link rel="stylesheet" type="text/css" id="css">

js:

window.onload = function(){
    if((screen.width == 1024) && (screen.height == 768)){
        document.getElementById('css').href = '1.css';
    }else if ((screen.width == 800) && (screen.height == 600)){
        document.getElementById('css').href = '2.css' ;
    }else{
        document.getElementById('css').href = '3.css';
    }
}

screen.width是当前屏幕分辨率的宽度,screen.height是当前屏幕分辨率的高度

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式