caoge c760052ff9 机车状态修改 | 8 months ago | |
---|---|---|
.. | ||
.npmignore | 8 months ago | |
LICENSE | 8 months ago | |
README.md | 8 months ago | |
bower.json | 8 months ago | |
index-svg.html | 8 months ago | |
index.html | 8 months ago | |
index.svg | 8 months ago | |
jquery.min.js | 8 months ago | |
package.json | 8 months ago | |
qrcode.js | 8 months ago | |
qrcode.min.js | 8 months ago |
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