zoukankan      html  css  js  c++  java
  • js生成条形码插件

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>js生成条形码插件</title>
        <script src="https://cdn.bootcss.com/jsbarcode/3.8.0/JsBarcode.all.min.js"></script>
        <style>
            * {margin: 0;padding: 0;box-sizing: border-box;}
            h3 {text-align: center;font-size: 16px;margin: 10px;}
            .box {text-align: center;}
            #barcode {width: 200px;}
            ul {padding: 5px;}
            li {list-style: none;padding: 5px 10px;font-size: 14px;line-height: 18px;}
            pre {font-size: 12px;}
        </style>
    </head>
    
    <body>
    <h3>js自动生成条形码插件-JsBarcode</h3>
    <div class="box">
        <img id="barcode" />
    </div>
    <ul>
        <li>npm官网地址:https://www.npmjs.com/package/jsbarcode</li>
        <li>github:https://github.com/lindell/JsBarcode</li>
        <li>使用说明:</li>
        <li>引入JsBarcode插件:JsBarcode.all.min.js</li>
        <li>可以访问:http://www.bootcdn.cn/jsbarcode/</li>
        <li>在HTML中放置img标签存放条形码的容器</li>
        <li>默认配置项</li>
        <li>
                <pre>
    {
         2,//较细处条形码的宽度
        height: 100, //条形码的宽度,无高度直接设置项,由位数决定
                     //也可以通过CSS去调整
        quite: 10,
        format: "CODE128",
        displayValue: false,//是否在条形码下方显示文字
        font:"monospace",
        textAlign:"center",
        fontSize: 12,
        background:"",
        lineColor:"#000"//条形码颜色
    }
                </pre>
        </li>
    </ul>
    </body>
    <script>
        var barcode = document.getElementById('barcode'),
                str = "18612908099",
                options = {
                    format: "CODE128",
                    displayValue: true,
                    fontSize: 18,
                    height: 100
                };
        JsBarcode(barcode, str, options); //原生
        // $('#barcode').JsBarcode(string, options); //jQuery
    </script>
    
    </html>
  • 相关阅读:
    java线程系列---Runnable和Thread的区别 (转载)
    JAVA基础(多线程Thread和Runnable的使用区别(转载)
    error: undefined reference to 'property_set (转载)
    Django基本命令
    第三篇数据库与ORM
    PyCharm下创建并运行我们的第一个Django项目
    第二篇MTV模型、基本命令、简单配置
    第一篇web框架
    Django框架全面讲解
    MySQL的异常问题
  • 原文地址:https://www.cnblogs.com/pcx105/p/8486708.html
Copyright © 2011-2022 走看看