1. 程式人生 > >列印頁面 訂單號生成 條形碼

列印頁面 訂單號生成 條形碼

1.所用外掛JsBarcode

2.下載地址:https://github.com/lindell/JsBarcode

3.用法:

<script>  
JsBarcode("#JsBarcode", "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>