Skip to content
forked from KeeeX/qrcodejs

Cross-browser QRCode generator for javascript

License

Notifications You must be signed in to change notification settings

UpCommerce/qrcodejs

This branch is up to date with KeeeX/qrcodejs:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Marc DELAGE
Sep 25, 2018
1c87e7f · Sep 25, 2018

History

56 Commits
Jun 3, 2013
Jun 25, 2018
Dec 26, 2012
Sep 25, 2018
May 24, 2018
May 24, 2018
Sep 25, 2018
Jul 3, 2018
Jul 3, 2018

Repository files navigation

QRCode.js

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

Project forked by KeeeX Company from davidshimjs/qrcodejs, we fixed Code Length Overflow error, and cleaned up the repository.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "https://github.com/KeeeX/qrcodejs");
</script>

or with some options

<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
	text: "https://github.com/KeeeX/qrcodejs",
	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("https://github.com/KeeeX"); // make another code.

Using with webpack

const QRCode = require("@keeex/qrcodejs-kx");
// Use QRCode as usual

Browser Compatibility

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

License

MIT License

About

Cross-browser QRCode generator for javascript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 92.6%
  • HTML 7.4%