zoukankan      html  css  js  c++  java
  • 吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-barcode

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
        </head>
    
        <body>
            <div class="container">
                <h2>Barcode Glyph</h2>
                <p>Barcode icon: <span class="glyphicon glyphicon-barcode"></span></p>    
                <p>Barcode icon as a link:
                    <a href="#">
                        <span class="glyphicon glyphicon-barcode"></span>
                    </a>
                </p>
                <p>Barcode icon on a button:
                    <button type="button" class="btn btn-default btn-sm">
                        <span class="glyphicon glyphicon-barcode"></span> Barcode
                    </button>
                </p>
                <p>Barcode icon on a styled link button:
                    <a href="#" class="btn btn-info btn-lg">
                        <span class="glyphicon glyphicon-barcode"></span> Barcode
                    </a>
                </p> 
            </div>
    
            <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
            <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
        </body>
    
    </html>

  • 相关阅读:
    vue 自定义全局按键修饰符
    Vue 过滤器
    v-if、v-show 指令
    其他内置函数
    python中序列化和反序列化
    jmeter图形化html报告核心指标介绍
    jmeter在linux系统下如何进行压力测试
    文件操作的其他方法
    文件处理操作
    内置函数reduce()
  • 原文地址:https://www.cnblogs.com/tszr/p/10893464.html
Copyright © 2011-2022 走看看