手把手教你做响应式网页,响应式布局实例入门(精)

刚接触响应式布局的童鞋会感觉响应式布局很高大上,很难,但实际上只用CSS就能实现响应式布局。今天中国网页设计通过一个响应式布局实例,手把手教你如何制作响应式网页。

响应式布局(Responsive Layout

响应式布局分别为不同的屏幕分辨率定义布局,同时,在每个布局中,应用流式布局的理念,即页面元素宽度随着窗口调整而自动适配。

响应式布局实例

当窗口大于1024px 时,指挥被压缩,并不会发生其他变化:

手把手教你做响应式网页,响应式布局实例入门(精)

当窗口小于1024px,大于720px的时候,右侧栏取消浮动,在下边显示:

手把手教你做响应式网页,响应式布局实例入门(精)

当窗口小于720px的时候,左中右三栏,全都取消浮动,宽度100%:

手把手教你做响应式网页,响应式布局实例入门(精)

手把手教你做响应式网页布局

CSS3中的Media Query(媒介查询)

通过不同的媒介类型和条件定义样式表规则。媒介查询让CSS可以更精确作用于不同的媒介类型和同一媒介的不同条件。媒介查询的大部分媒介特性都接受min和max用于表达”大于或等于”和”小于或等于”。

如:width会有min-width和max-width媒介查询可以被用在CSS中的@media和@import规则上。通过这个标签属性,我们可以很方便的在不同的设备下实现丰富的界面,特别是移动设备,将会运用更加的广泛。

使用@media 的三种方法

1.直接在CSS文件中使用:

@media 类型 and (条件1) and (条件二){
    css样式
}
@media screen and (max-width:1024px) {
    body{
        background-color: red;
    }
}

2.使用@import导入

@import url("css/moxie.css") all and (max-width:980px);

3.也是最常用的方法–直接使用link连接,media属性用于设置查询方法

<link rel="stylesheet" type="text/css" href="css/moxie.css" media=“all and (max-width=980px)”/>

下面是一个简单的响应式的布局HTMl代码:

<!doctype html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>响应式</title>
    <link rel="stylesheet" type="text/css" href="index.css"/>
<link rel="stylesheet" type="text/css" href="index01.css" media="screen and (max-width:1024px) and (min-width:720px)"/>
    <link rel="stylesheet" type="text/css" href="index02.css" media="screen and (max-width:720px)"/>
</head>
<body>
    <div class="header">头部</div>
    <div class="main clearfix">
        <div class="left">左边</div>
        <div class="center">中间</div>
        <div class="right">右边</div>
    </div>
    <div class="footer">底部</div>
</body>
</html>

下面是CSS样式:

*{
    margin:0;
    padding:0;
    text-align:center;
    color:yellow; 
}

.header{
    width:100%;
    height:100px;
    background:#ccc;
    line-height:100px;
}
.main{
    background:green;
    width:100%;
}
.clearfix:after{
    display:block;
    height:0;
    content:"";
    visibility:hidden;
    clear:both;
}
.left,.center,.right{
    float:left;
}
.left{
    width:20%;
    background:#112993;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.center{
    width:60%;
    background:#ff0;
    height:400px;
    color:#fff;
    font-size:50px;
    line-height:400px;
}
.right{
    width:20%;
    background:#f0f;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.footer{
    width:100%;
    height:50px;
    background:#000;
    line-height:50px;
}

<link rel=”stylesheet” type=”text/css” href=”index01.css” media=”screen and (max-width:1024px) and (min-width:720px)”/>样式代码

.right{
    float:none;
    width:100%;
    background:#f0f;
    clear:both;
}
.left{
    width:30%;
}
.center{
    width:70%;
}
.main{
    height:800px;
}

<link rel=”stylesheet” type=”text/css” href=”index02.css” media=”screen and (max-width:720px)”/>样式代码

.left,.center,.right{
    float:none;
    width:100%;
}

这是响应式布局实例入门的全部内容,怎么样?响应式布局就这么简单,细节的把握还靠不断地练习。

响应式布局相关教程会持续更新……

125jz网原创文章。发布者:江山如画,转载请注明出处:http://www.125jz.com/2273.html

(10)
江山如画的头像江山如画管理团队
上一篇 2018年7月27日 下午7:22
下一篇 2018年7月28日 下午12:28

99%的人还看了以下文章

发表回复

登录后才能评论