barcode实现svg条形码code-128生成器代码

代码语言:html

所属分类:其他

代码描述:barcode实现svg条形码code-128生成器代码

代码标签: barcode svg 条形码 生成

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>

<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">


    <style type="text/css">
        * {
            padding: 0;
            margin: 0;
        }

        svg {
            border: 1px #eee solid;
            display: inline-block;
            float: left;
        }

        body {
            background: #fafafa;
        }

        h1 {
            text-align: center;
            margin: 150px auto 30px auto;
        }
    </style>

    <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/barcode.min.js"></script>
</head>

<body>

    <h1>SVG Based Bar Code (Code-128 ) Generator</h1>
    <script>
        'use strict';

        var
        barcodes = [

             BARCode('128 Barcode', {

                 dim: [80, 352] /* vertical */
                , pad: [16, 20] /* padding */
                , pal: ['#037', '#cef'] /* palette */
             })

            , BARCode('RC123456789US') /* simple */

            , BARCode('autowidth', {

                dim: [0, 80] /* depends on the length of generated barcode. */
                , pal: ['#037', '#eef']
        .........完整代码请登录后点击上方下载按钮下载查看

网友评论0