zhangli d1796ac467 初次提交代码 | vor 1 Jahr | |
---|---|---|
.. | ||
LICENSE | vor 1 Jahr | |
README.md | vor 1 Jahr | |
bower.json | vor 1 Jahr | |
index-svg.html | vor 1 Jahr | |
index.html | vor 1 Jahr | |
index.svg | vor 1 Jahr | |
jquery.min.js | vor 1 Jahr | |
package.json | vor 1 Jahr | |
qrcode.js | vor 1 Jahr | |
qrcode.min.js | vor 1 Jahr |
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