@virtualcapitalofamerica/qr.js

1.0.1 • Public • Published

QR.js

QR.js is javascript library for making QR Codes. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM.

QR.js has no dependencies.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
  new QRCode(document.getElementById("qrcode"), "http://");
</script>

or with some options

<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
	text: "http://jindo.dev.naver.com/collie",
	width: 128,
	height: 128,
	colorDark : "#000000",
	colorLight : "#ffffff",
	correctLevel : QRCode.CorrectLevel.H
});
</script>

and you can use some methods

qrcode.clear(); // clear the code.
qrcode.makeCode("http://naver.com"); // make another code.

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

Contact

twitter @davidshimjs

Bitdeli Badge

Dependents (0)

Package Sidebar

Install

npm i @virtualcapitalofamerica/qr.js

Weekly Downloads

3

Version

1.0.1

License

ISC

Unpacked Size

69.5 kB

Total Files

7

Last publish

Collaborators

  • thepisode