A Pen by Rodrigo Castro on CodePen.
Created
August 15, 2016 19:27
-
-
Save castrors/75b909cc89631f65dcaab666b85f2d98 to your computer and use it in GitHub Desktop.
Simple JsBarcode Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg id="code128"></svg> | |
<svg id="code39"></svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JsBarcode("#code128", "1111000000000000046"); | |
JsBarcode("#code39", "1111000000000000046", {format: "code39"}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.jsdelivr.net/jsbarcode/3.3.18/JsBarcode.all.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
svg { | |
margin: 30px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment