zoukankan      html  css  js  c++  java
  • bootstrap 常用 功能

            
         <meta name="viewport" charset="UTF-8" content="width=device-width, initial-scale=1.0">
    <!-- 新 Bootstrap 核心 CSS 文件 --><linkhref="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css"rel="stylesheet"><!-- 可选的Bootstrap主题文件(一般不使用) --><scriptsrc="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap-theme.min.css"></script><!-- jQuery文件。务必在bootstrap.min.js 之前引入 --><scriptsrc="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script><!-- 最新的 Bootstrap 核心 JavaScript 文件 --><scriptsrc="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <!-- 标准的按钮 --> <button type="button" class="btn btn-default">默认按钮</button> <!-- 提供额外的视觉效果,标识一组按钮中的原始动作 --> <button type="button" class="btn btn-primary">原始按钮</button> <!-- 表示一个成功的或积极的动作 --> <button type="button" class="btn btn-success">成功按钮</button> <!-- 信息警告消息的上下文按钮 --> <button type="button" class="btn btn-info">信息按钮</button> <!-- 表示应谨慎采取的动作 --> <button type="button" class="btn btn-warning">警告按钮</button> <!-- 表示一个危险的或潜在的负面动作 --> <button type="button" class="btn btn-danger">危险按钮</button> <!-- 并不强调是一个按钮,看起来像一个链接,但同时保持按钮的行为 --> <button type="button" class="btn btn-link">链接按钮</button>

    <!-- 标准的按钮 --><buttontype="button"class="btn btn-default">默认按钮</button><!-- 提供额外的视觉效果,标识一组按钮中的原始动作 --><buttontype="button"class="btn btn-primary">原始按钮</button><!-- 表示一个成功的或积极的动作 --><buttontype="button"class="btn btn-success">成功按钮</button><!-- 信息警告消息的上下文按钮 --><buttontype="button"class="btn btn-info">信息按钮</button><!-- 表示应谨慎采取的动作 --><buttontype="button"class="btn btn-warning">警告按钮</button><!-- 表示一个危险的或潜在的负面动作 --><buttontype="button"class="btn btn-danger">危险按钮</button><!-- 并不强调是一个按钮,看起来像一个链接,但同时保持按钮的行为 --><buttontype="button"class="btn btn-link">链接按钮</button>

  • 相关阅读:
    shell加载配置文件
    Shell四种运行方式(启动方式)
    Linux下Fork与Exec使用
    ln -snf 的个人理解
    利用python3将已有的某几个pptx文件的某些slides来生成新的pptx文件的范例
    如何在centos7中安装python3
    ng-include
    ng-class细说 by破狼
    AngularJS的Filter用法详解
    理解angularjs中的$emit,$broadcast和$on by Four
  • 原文地址:https://www.cnblogs.com/benpaodegegen/p/6734272.html
Copyright © 2011-2022 走看看