bootstrap基础(一)

作者: mogugit | 来源:发表于2016-06-04 21:04 被阅读628次

    - bootstrap 基础
    - 使用方法
    

    首先下载 bootstrap

    传送门:中文文档http://v3.bootcss.com/

    传送门:英文文档http://getbootstrap.com/

    bootstrap基本模板

    <!DOCTYPE html>
        <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">
            <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
            <title>Bootstrap 101 Template</title>
    
            <!-- Bootstrap -->
            <link href="css/bootstrap.min.css" rel="stylesheet">
    
            <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
            <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
                <!--[if lt IE 9] 解决IE6,IE7,IE8的响应式>
            <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
            <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
                <![endif]-->
        </head>
     <body>
        <h1>你好,世界!</h1>
    
        <!-- jQuery (necessary for Bootstrap's JavaScript plugins) 
        
        jQuery文件引入要在bootstrap文件引入之前 这里是线上引用,当然你可以使用下载好的本地文件 -->
         
        <script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
         <!-- Include all compiled plugins (below), or include individual files as needed -->   
        <script src="js/bootstrap.min.js"></script>
    </body>
    </html>
    

    全局样式style.css

    移除body的margin声明
    设置body的背景色为白色
    为排版设置了基本的字体、字号和行高
    设置全局链接颜色,且当链接处于悬浮“:hover”状态时才会显示下划线样式
    

    标题类

    <h1>你好,世界!</h1>
    <h2>你好,世界!</h2>
    <h3>你好,世界!</h3>
    <h4>你好,世界!</h4>
    <h5>你好,世界!</h5>
    <h6>你好,世界!</h6>
    <!-- 标题类 h1-h6 -->
    
    <div class="h1">hello world</div>
    <div class="h2">hello world</div>
    <div class="h3">hello world</div>
    <div class="h4">hello world</div>
    <div class="h5">hello world</div>
    

    .h1~.h6 效果

    Mou icon

    副标题

    <div class="h1">hello world<small>你好 世界!</small></div>
    <div class="h2">hello world<small>你好 世界!</small></div>
    <div class="h3">hello world<small>你好 世界!</small></div>
    <div class="h4">hello world<small>你好 世界!</small></div>
    <div class="h5">hello world<small>你好 世界!</small></div>
    

    效果如下:

    Mou icon

    bootstrap 预处理

    在bootstrap中有些便签是本来就一应预处理好的

    例:a 标签 本身是自带一些默认性的,如:   
    color: -webkit-link;
    text-decoration: underline;
    cursor: auto;
    
    但是在bootstrap中这些属性都被预处理了
    设置了全局链接颜色,并且当处于悬浮“:hover”时才会显示下划线样式
    color: #337ab7;
    text-decoration: none;
    background-color: transparent;
    

    强调内容

    .lead 一般段落标签使用

    例:<p class="lead">我是段落</p>与<p>我是段落</p>

    效果如下:

    Mou icon

    a.其他强调标签

    <small>
    <strong></strong> <b></b>(已经快废弃)
    <em></em>  <i></i>
    <cite></cite>
    

    强调相关的类

    text-muted:提示,使用浅灰色(#999)
    text-primary:主要,使用蓝色(#428bca)
    text-success:成功,使用浅绿色(#3c763d)
    text-info:通知信息,使用浅蓝色(#31708f)
    text-warning:警告,使用黄色(#8a6d3b)
    text-danger:危险,使用褐色(#a94442)
    

    例:

    <p class="text-muted">我是text-muted</p>
    <p class="text-primary">我是text-primary</p>
    <p class="text-success">我是text-success</p>
    <p class="text-info">我是text-info</p>
    <p class="text-warning">我是text-warning</p>
    <p class="text-danger">我是text-danger</p>
    <p class="">我是段落</p>
    

    效果如下:

    Mou icon

    文本对齐风格

      text-left:左对齐
      text-center:居中对齐
      text-right:右对齐
      text-justify:两端对齐
    

    例:

     <div class="text-left">
     <!-- text-left:左对齐 -->
      Bootstrap 中文网 为 Bootstrap 专门构建了自己的免费 CDN <br/>
      加速服务。基于国内云厂商的 CDN 服务,访问速度更快、加速效果更明显、没有速<br/>度和带宽限制、永久免费。Bootstrap 中文网还对大量的前端开源工具库提供了 CDN 加速服务,请进入BootCDN <br/>
      主页查看更多可用的工具库。
    </div>
    <div class="text-center">
    <!-- text-center:居中对齐 -->
      Bootstrap 中文网 为 Bootstrap 专门构建了自己的免费 CDN <br/>
      加速服务。基于国内云厂商的 CDN 服务,访问速度更快、加速效果更明显、没有速<br/>度和带宽限制、永久免费。Bootstrap 中文网还对大量的前端开源工具库提供了 CDN 加速服务,请进入BootCDN <br/>
      主页查看更多可用的工具库。
    </div>
    <div class="text-right">
    <!-- text-right:右对齐 -->
      Bootstrap 中文网 为 Bootstrap 专门构建了自己的免费 CDN <br/>
      加速服务。基于国内云厂商的 CDN 服务,访问速度更快、加速效果更明显、没有速<br/>度和带宽限制、永久免费。Bootstrap 中文网还对大量的前端开源工具库提供了 CDN 加速服务,请进入BootCDN <br/>
      主页查看更多可用的工具库。
    </div>
    <div class="text-justify">
    <!-- text-justify:两端对齐(其实就是自动换行) -->
      Bootstrap 中文网 为 Bootstrap 专门构建了自己的免费 CDN 加速服务。基于国内云厂商的 CDN 服务,访问速度更快、加速效果更明显、没有速度和带宽限制、永久免费。Bootstrap 中文网还对大量的前端开源工具库提供了 CDN 加速服务,请进入BootCDN 主页查看更多可用的工具库。
    </div>
    

    效果如下:

    Mou icon

    列表

    ul 去序列样式 <ul class="list-unstyled">
    例:  
    <ul class="list-unstyled">
      <li >我是无序列</li>
      <li>我是无序列</li>
      <li>我是无序列</li>
    </ul>
    

    效果如下:

    Mou icon Mou icon
    ol 去序列样式<ol class="list-unstyled">
    例:
    <ol class="list-unstyled">
      <li>我是有序</li>
      <li>我是有序</li>
      <li>我是有序</li>
    </ol>
    

    效果入下:

    Mou icon Mou icon
    ul ol 水平列表:list-inline
    把垂直列表换成水平列表,而且去掉项目符号(编号),保持水平显示
    
    例:
    <ul class="list-inline">
      <li >我是无序列</li>
      <li>我是无序列</li>
      <li>我是无序列</li>
    </ul>
    <ol class="list-inline">
      <li >我是有序</li>
      <li>我是有序</li>
      <li>我是有序</li>
    </ol>
    

    效果如下:

    Mou icon
    dl 水平列表:dl-horizontal
    屏幕大于768px的时候,添加类名“.dl-horizontal”才具有水平定义列表效果
    例:
    <dl class="dl-horizontal">
      <dt>我是列标题</dt>
      <dd>我是内容</dd>
      <dd>我市内容</dd>
    </dl>
    

    屏幕小于768px

    Mou icon

    屏幕大于768px

    Mou icon

    代码风格

    code标签
    <code> 标签用于表示计算机源代码或者其他机器可以阅读的文本内容。
    软件代码的编写者已经习惯了编写源代码时文本表示的特殊样式。<code> 标签就是为他们设计的。包含在该标签内的文本将用等宽、类似电传打字机样式的字体(Courier)显示出来,对于大多数程序员户来说,这应该是十分熟悉的。
    只应该在表示计算机程序源代码或者其他机器可以阅读的文本内容上使用 <code> 标签。虽然 <code> 标签通常只是把文本变成等宽字体,但它暗示着这段文本是源程序代码。将来的浏览器有可能会加入其他显示效果。例如,程序员的浏览器可能会寻找 <code> 片段,并执行某些额外的文本格式化处理,如循环和条件判断语句的特殊缩进等。
    一般是针对于单个单词或单个句子的代码
    例: 
    <code>
        var mun1=10
    </code>
    

    效果如下:

    Mou icon
    pre-scrollable
    只需要在pre标签上添加类名“.pre-scrollable”,就可以控制代码块区域最大高度为340px,一旦超出这个高度,就会在Y轴出现滚动条。
    例:
    <pre class="pre-scrollable">
        function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
         function(){
          我是一个函数
          我是测试
        }
    
         function(){
          我是一个函数
          我是测试
        }
    </pre>
    

    效果如下:

    Mou icon

    bootstrap-表格

    基础表格:
    .table
    给表格设置了margin-bottom:20px以及设置单元内距
    在thead底部设置了一个2px的浅灰实线
    每个单元格顶部设置了一个1px的浅灰实线
    
    例:<table class="table "> 
      <thead>
        <tr>
          <th>我是头标题</th>
          <th>我是头标题</th>
          <th>我是头标题</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>我是单元</td>
          <td>我是单元</td>
          <td>我是单元</td>
        </tr>
        <tr>
          <td>我是单元格</td>
          <td>我是单元格</td>
          <td>我是单元格</td>
        </tr>
        <tr>
          <td>我是单元格</td>
          <td>我是单元格</td>
          <td>我是单元格</td>
        </tr>
      </tbody>
    </table>
    

    效果如下:

    Mou icon
    附加样式表格  
    附加样式表格
    .table-striped:斑马线表格
    .table-bordered:带边框的表格
    .table-hover:鼠标悬停高亮的表格
    .table-condensed:紧凑型表格(减小paading 值)
    

    例:


    Mou icon
    响应式表格
    .table-responsive
    <div class=“table-responsive”>
    <table class=“table table-bordered”>
    Bootstrap提供了一个容器,并且此容器设置类名“.table-responsive”,此容器就具有响应式效果,然后将<table class=“table”>置于这个容器当中,这样表格也就具有响应式效果
    当你的浏览器可视区域小于768px时,表格底部会出现水平滚动条。当你的浏览器可视区域大于768px时,表格底部水平滚动条就会消失
    例:
    <div class="table-responsive">
        <table class="table table-striped table-bordered table-hover table-condensed"> 
      <thead>
        <tr>
          <th>我是头标题</th>
          <th>我是头标题</th>
          <th>我是头标题</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>我是单元格我是单元格我是单元格我是单元格我是单元格</td>
          <td>我是单元格我是单元格我是单元格我是单元格我是单元格</td>
          <td>我是单元格我是单元格我是单元格我是单元格我是单元格</td>
        </tr>
        <tr>
          <td>我是单元格</td>
          <td>我是单元格</td>
          <td>我是单元格</td>
        </tr>
        <tr>
          <td>我是单元格</td>
          <td>我是单元格</td>
          <td>我是单元格</td>
        </tr>
      </tbody>
    </table>
    </div>
    

    屏幕小于768px

    Mou icon

    屏幕大于768px

    Mou icon

    bootstrap-图片 和图标

    bootstrap-图片
    使用方法非常简单,只需要在<img>标签上添加对应的类名
    img-responsive:响应式图片,主要针对于响应式设计
    img-rounded:圆角图片
    img-circle:圆形图片
    img-thumbnail:缩略图片
    

    bootstrap-图标

        Bootstrap框架中也为大家提供了近200个不同的icon图片,
        
        而这些图标都是使用CSS3的@font-face属性配合字体来实现的icon效果。
    

    传送门:中文http://getbootstrap.com/components/#glyphicons
    传送门:英文http://v3.bootcss.com/components/

        查看所有图标名称
    任何行级元素都可以,通常使用span标签坐图标容器
    在Bootstrap框架中是通过给元素添加“glyphicon”类名来实现,
        <span class=“glyphic glyphicon-search”></span>
    <span class=“glyphic glyphicon-asterisk”></span>
    <span class=“glyphic glyphicon-plus”></span>
    <span class=“glyphic glyphicon-cloud”></span>
    
    
    
    好了到这里 bootstrap基础(一)就结束了,,,

    相关文章

      网友评论

      本文标题: bootstrap基础(一)

      本文链接:https://www.haomeiwen.com/subject/vlgldttx.html