You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/public/pc/plugins/qrcodejs
lqmac 136ba653d7 1 9 months ago
..
.npmignore 1 9 months ago
LICENSE 1 9 months ago
README.md 1 9 months ago
bower.json 1 9 months ago
index-svg.html 1 9 months ago
index.html 1 9 months ago
index.js 1 9 months ago
index.svg 1 9 months ago
jquery.min.js 1 9 months ago
package.json 1 9 months ago
qrcode.js 1 9 months ago
qrcode.min.js 1 9 months ago

README.md

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.

Basic Usages

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

or with some options

var qrcode = new QRCode("test", {
	text: "http://jindo.dev.naver.com/collie",
	width: 128,
	height: 128,
	colorDark : "#000000",
	colorLight : "#ffffff",
	correctLevel : QRCode.CorrectLevel.H
});

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