| 
				
					 | 
			hace 1 año | |
|---|---|---|
| .. | ||
| .npmignore | hace 1 año | |
| LICENSE | hace 1 año | |
| README.md | hace 1 año | |
| bower.json | hace 1 año | |
| index-svg.html | hace 1 año | |
| index.html | hace 1 año | |
| index.svg | hace 1 año | |
| jquery.min.js | hace 1 año | |
| package.json | hace 1 año | |
| qrcode.js | hace 1 año | |
| qrcode.min.js | hace 1 año | |
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.
<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.
IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.
MIT License
twitter @davidshimjs