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.
lqmac
136ba653d7
|
9 months ago | |
---|---|---|
.. | ||
.npmignore | 9 months ago | |
LICENSE | 9 months ago | |
README.md | 9 months ago | |
bower.json | 9 months ago | |
index-svg.html | 9 months ago | |
index.html | 9 months ago | |
index.js | 9 months ago | |
index.svg | 9 months ago | |
jquery.min.js | 9 months ago | |
package.json | 9 months ago | |
qrcode.js | 9 months ago | |
qrcode.min.js | 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