【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例

文章目录

  • 响应式布局
    • 一、介绍和版心
    • 二、BootStrap
    • 使用bootstrap做轮播图案例
      • 完整代码
      • 效果图
  • 总结

响应式布局

一、介绍和版心

前面已经简单接触过。响应式布局就是代码随着屏幕大小的改变显示不同。

档位划分:

  • 媒体查询:档位划分;市场上默认的划分;三个节点、四个档位
    • w<768 超小屏幕(xs)(手机,学习rem布局里面的档位划分都是在这个范围)
    • 768<= w <992 小屏设备(sm)(平板)
    • 992<= w <1200 中等屏幕(md)(小显示屏的PC显示器)
    • 1200<=w 大宽屏设备(lg)(大桌面显示器)

语法:把市场上所有屏幕包括在内;

/* 1. 超小屏幕下 xs 小于 768 */
@media screen and (min-width: 0px) {
}
/* 2. 小屏幕下 sm 大于等于768 */
@media screen and (min-width: 768px) {
}
/* 3. 中等屏幕下 md 大于等于 992px */
@media screen and (min-width: 992px) {
}
/* 4. 大屏幕下 lg 大于等于1200 */
@media screen and (min-width: 1200px) {
}

版心

  • 不同的档位下,版心不同;

  • 档位设置:版心;

  • 所有的子元素都是归于版心下,不同的版心宽度,意味着子元素要以不同的布局排版满足用户浏览友好的需求;

语法

/* 1. 超小屏幕下 xs 小于 768 布局容器的宽度为 100% */
@media screen and (max-width: 767px) {
    .container {
    	width: 100%;
    }
}
/* 2. 小屏幕下 sm 大于等于768 布局容器改为 750px */
@media screen and (min-width: 768px) {
    .container {
    	width: 750px;
    }
}
/* 3. 中等屏幕下 md 大于等于 992px 布局容器修改为 970px */
@media screen and (min-width: 992px) {
    .container {
    	width: 970px;
    }
}
/* 4. 大屏幕下 lg 大于等于1200 布局容器修改为 1170 */
@media screen and (min-width: 1200px) {
    .container {
    	width: 1170px;
    }
}
  • 注意:
    • 媒体查询使用符号的相关:min-,max-包含等号,后面是数值单位为px;
    • 除超小屏以外:版心的宽度设置都是小于当前档位最小界值,比如 min-width: 768px,版心是750px; 原因:两边留空白,用户体验好。
    • 以上市场默认划分,可根据自己需求添加档位

二、BootStrap

网址:

  • 中文网:http://www.bootcss.com/

版本:

  • 2.x.x:停止维护,代码不够简洁,功能不够完善。
  • 3.x.x:目前使用最多,稳定,不支持IE6-IE7。对 IE8 支持,界面效果不好,偏向用于开发响应式布局、 移动设备优先的WEB 项目。
  • 4.x.x:最新版,目前还不是很流行

超级常见和好用的一个响应式布局模板。

如何使用?


<html lang="zh-CN">
    <head>
    <meta charset="utf-8">
    
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
        
    
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>BootStrap Templatetitle>
        
    
    <link href="css/bootstrap.min.css" rel="stylesheet">
        
    
    
    
    
        
    
    
    head>
    <body>
    	<h1>你好,世界!h1>
    body>
html>

特点就是栅格系统可以非常方便快速地搭建一个网站。

可以查看手册:bootstrap入门基础。

【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例_第1张图片
使用bootstrap制作轮播图: 模板
【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例_第2张图片

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  
  <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active">li>
    <li data-target="#carousel-example-generic" data-slide-to="1">li>
    <li data-target="#carousel-example-generic" data-slide-to="2">li>
  ol>

  
  <div class="carousel-inner" role="listbox">
    <div class="item active">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      div>
    div>
    <div class="item">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      div>
    div>
    ...
  div>

  
  <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left" aria-hidden="true">span>
    <span class="sr-only">Previousspan>
  a>
  <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right" aria-hidden="true">span>
    <span class="sr-only">Nextspan>
  a>
div>

使用bootstrap做轮播图案例

  • 先将bootstrap所需工具引入到项目中
    【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例_第3张图片
  • 使用bootstrap模板
    
    <html lang="zh-CN">
        <head>
        <meta charset="utf-8">
        
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
            
        
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>BootStrap Templatetitle>
            
        
        <link href="css/bootstrap.min.css" rel="stylesheet">
            
        
        
        
        
            
        
        
        head>
        <body>
        	<h1>你好,世界!h1>
        body>
    html>
    
  • 到官网上找轮播图代码,直接拷贝到html中
    	<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
      
      <ol class="carousel-indicators">
        <li data-target="#carousel-example-generic" data-slide-to="0" class="active">li>
        <li data-target="#carousel-example-generic" data-slide-to="1">li>
        <li data-target="#carousel-example-generic" data-slide-to="2">li>
      ol>
    
      
      <div class="carousel-inner" role="listbox">
        <div class="item active">
          <img src="..." alt="...">
          <div class="carousel-caption">
            ...
          div>
        div>
        <div class="item">
          <img src="..." alt="...">
          <div class="carousel-caption">
            ...
          div>
        div>
        ...
      div>
    
      
      <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
        <span class="glyphicon glyphicon-chevron-left" aria-hidden="true">span>
        <span class="sr-only">Previousspan>
      a>
      <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
        <span class="glyphicon glyphicon-chevron-right" aria-hidden="true">span>
        <span class="sr-only">Nextspan>
      a>
    div>
    

完整代码


<html lang="zh-CN">
  <head>
    <meta charset="utf-8">
    
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    <meta name="viewport" content="width=device-width, initial-scale=1">
    
    <title>Bootstrap 101 Templatetitle>

    
    <link href="css/bootstrap.css" rel="stylesheet">

    
    
    
  head>
  <body>
    <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
      
      <ol class="carousel-indicators">
        <li data-target="#carousel-example-generic" data-slide-to="0" class="active">li>
        <li data-target="#carousel-example-generic" data-slide-to="1">li>
        <li data-target="#carousel-example-generic" data-slide-to="2">li>
      ol>
    
      
      <div class="carousel-inner" role="listbox">
        <div class="item active">
          <img src="img/1.jpg" alt="...">
          <div class="carousel-caption">
            ...
          div>
        div>
        <div class="item">
          <img src="img/2.jpg" alt="...">
          <div class="carousel-caption">
            ...
          div>
        div>
        <div class="item">
          <img src="img/3.jpg" alt="...">
          <div class="carousel-caption">
            ...
          div>
        div>
      div>
    
      
      <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
        <span class="glyphicon glyphicon-chevron-left" aria-hidden="true">span>
        <span class="sr-only">Previousspan>
      a>
      <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
        <span class="glyphicon glyphicon-chevron-right" aria-hidden="true">span>
        <span class="sr-only">Nextspan>
      a>
    div>

    
    <script src="js/jquery-1.11.3.min.js">script>
    
    <script src="js/bootstrap.js">script>
  body>
html>

效果图

  • 浏览器查看:最大页面
  • 缩小页面:自适应
    【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例_第4张图片
  • 手机端显示
    【5-12】《响应式布局》——响应式布局介绍和版心、BootStrap、使用BootStrap步骤、BootStrap入门基础、BootStrap案例_第5张图片

总结

bootstrap能够快速搭建一个前端网页,非常好用!尤其适合新手。

你可能感兴趣的:(【前端精华笔记】更新中,bootstrap,前端页面,网页制作,响应式布局,bootstrap入门基础)