美文网首页前端开发Bootstrap文集前端开发
Bootstrap按钮,图片,辅助类

Bootstrap按钮,图片,辅助类

作者: 墨马 | 来源:发表于2017-09-14 20:47 被阅读74次

    按钮

    以下样式可用于<a>, <button>, 或 <input> 元素上

    按钮类
    <!-- 标准的按钮 -->
    <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>
    
    示例
    <p>
      <button type="button" class="btn btn-primary btn-lg">大的原始按钮</button>
      <button type="button" class="btn btn-default btn-lg">大的按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary">默认大小的原始按钮</button>
      <button type="button" class="btn btn-default">默认大小的按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary btn-sm">小的原始按钮</button>
      <button type="button" class="btn btn-default btn-sm">小的按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary btn-xs">特别小的原始按钮</button>
      <button type="button" class="btn btn-default btn-xs">特别小的按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary btn-lg btn-block">块级的原始按钮</button>
      <button type="button" class="btn btn-default btn-lg btn-block">块级的按钮</button>
    </p>
    
    示例
    <p>
      <button type="button" class="btn btn-default btn-lg ">默认按钮</button>
      <button type="button" class="btn btn-default btn-lg active">激活按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary btn-lg ">原始按钮</button>
      <button type="button" class="btn btn-primary btn-lg active">激活的原始按钮</button>
    </p>
    
    示例
    <p>
      <button type="button" class="btn btn-default btn-lg">默认按钮</button>
      <button type="button" class="btn btn-default btn-lg" disabled="disabled">禁用按钮</button>
    </p>
    <p>
      <button type="button" class="btn btn-primary btn-lg ">原始按钮</button>
      <button type="button" class="btn btn-primary btn-lg" disabled="disabled">禁用的原始按钮</button>
    </p>
    <p>
      <a href="#" class="btn btn-default btn-lg" role="button">链接</a>
      <a href="#" class="btn btn-default btn-lg disabled" role="button">禁用链接</a>
    </p>
    <p>
      <a href="#" class="btn btn-primary btn-lg" role="button">原始链接</a>
      <a href="#" class="btn btn-primary btn-lg disabled" role="button">禁用的原始链接</a>
    </p>
    
    示例

    图片

    • .img-rounded:添加 border-radius:6px 来获得图片圆角
    • .img-circle:添加 border-radius:50% 来让整个图片变成圆形
    • .img-thumbnail:添加一些内边距(padding)和一个灰色的边框
    ![](text.png)
    <img src= "text.png" class="img-circle">
    <img src= "text.png" class="img-thumbnail">
    
    示例

    辅助类

    以下的类展示了不同的文本颜色。如果文本是个链接鼠标移动到文本上会变暗


    image.png

    以下的类展示了不同的背景颜色。 如果文本是个链接鼠标移动到文本上会变暗


    示例
    其他
    示例
    <div class="row" style="padding: 91px 100px 19px 50px;">
        <form class="form-inline" role="form">
            <div class="form-group">
                <label  for="email">Email 地址</label>
                <input type="email" class="form-control" placeholder="Enter email">
            </div>
            <div class="form-group">
                <label class="sr-only" for="pass">密码</label>
                <input type="password" class="form-control" placeholder="Password">
            </div>
        </form>
    </div>
    

    把元素对所有设备隐藏,除了屏幕阅读器


    示例

    响应式实用工具

    示例
    从 v3.2.0 版本起,形如 .visible-- 的类针对每种屏幕大小都有了三种变体,每个针对 CSS 中不同的 display 属性
    示例
    切换打印内容
    示例
    <div class="container" style="padding: 40px;">
        <div class="row visible-on">
            <div class="col-xs-6 col-sm-3" style="background-color: #dedef8;
                                                  box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;">
                <span class="hidden-xs">特别小型</span>
                <span class="visible-xs">✔ 在特别小型设备上可见</span>
            </div>
            <div class="col-xs-6 col-sm-3" style="background-color: #dedef8;
                                                  box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;">
                <span class="hidden-sm">小型</span>
                <span class="visible-sm">✔ 在小型设备上可见</span>
            </div>
            <div class="clearfix visible-xs"></div>
            <div class="col-xs-6 col-sm-3" style="background-color: #dedef8;
                                                  box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;">
                <span class="hidden-md">中型</span>
                <span class="visible-md">✔ 在中型设备上可见</span>
            </div>
            <div class="col-xs-6 col-sm-3" style="background-color: #dedef8;
                                                  box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;">
                <span class="hidden-lg">大型</span>
                <span class="visible-lg">✔ 在大型设备上可见</span>
            </div>
        </div>
    </div>
    
    示例

    勾号(✔) 表示元素在当前视口中可见

    相关文章

      网友评论

        本文标题:Bootstrap按钮,图片,辅助类

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