条形码--JsBarcode(银联二维码用过)
介绍一下在GitHub生成条形码的js插件→JsBarcode
条码支持的有:
CODE128
CODE128 (自动模式切换)
CODE128 A/B/C (强制模式)
EAN
EAN-13
EAN-8
EAN-5
EAN-2
UPC (A)
CODE39
ITF-14
MSI
MSI10
MSI11
MSI1010
MSI1110
Pharmacode
Codabar
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" /> <meta name= "viewport" content= "width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no" /> <title></title> <script type= "text/javascript" src= "https://code.jquery.com/jquery-2.1.3.min.js" ></script> <script type= "text/javascript" src= "js/JsBarcode.all.js" ></script> </head> <body> <svg id= "svgcode" ></svg> <!-- or --> <canvas id= "canvascode" ></canvas> <!-- or --> <img id= "imgcode" /> <script> $( "#svgcode" ).JsBarcode( 'Hi!' ); //or JsBarcode("#svgcode", "Hi!"); $( "#canvascode" ).JsBarcode( 'Hello world!' ); //or JsBarcode("#canvascode", "Hello world!"); $( "#imgcode" ).JsBarcode( "I'm huangenai!" ); //or JsBarcode("#imgcode", "I'm huangenai!"); </script> </body></html> |
JsBarcode 我们还可以设置条码的一些属性(可设置属性详细介绍 链接:https://github.com/lindell/JsBarcode/wiki/Options)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <img id= "imgcode" /> <script> JsBarcode( "#imgcode" , "123" , { format: "CODE39" , //选择要使用的条形码类型 width:3, //设置条之间的宽度 height:100, //高度 displayValue: true , //是否在条形码下方显示文字 text: "456" , //覆盖显示的文本 fontOptions: "bold italic" , //使文字加粗体或变斜体 font: "fantasy" , //设置文本的字体 textAlign: "left" , //设置文本的水平对齐方式 textPosition: "top" , //设置文本的垂直位置 textMargin:5, //设置条形码和文本之间的间距 fontSize:15, //设置文本的大小 background: "#eee" , //设置条形码的背景 lineColor: "#2196f3" , //设置条和文本的颜色。 margin:15 //设置条形码周围的空白边距 }); </script> |
GitHub:https://github.com/lindell/JsBarcode
条码生成器:http://lindell.me/JsBarcode/generator/
JsBarcode示例与设置:http://codepen.io/lindell/pen/mPvLXx?editors=1010
简单的JsBarcode演示:http://codepen.io/lindell/pen/eZKBdO?editors=1010
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥