django-vue3-admin-web/node_modules/qrcodejs2-fixes
2025-10-20 21:21:14 +08:00
..
bower.json 初始化 2025-10-20 21:21:14 +08:00
index-svg.html 初始化 2025-10-20 21:21:14 +08:00
index.html 初始化 2025-10-20 21:21:14 +08:00
index.svg 初始化 2025-10-20 21:21:14 +08:00
jquery.min.js 初始化 2025-10-20 21:21:14 +08:00
LICENSE 初始化 2025-10-20 21:21:14 +08:00
package.json 初始化 2025-10-20 21:21:14 +08:00
qrcode.js 初始化 2025-10-20 21:21:14 +08:00
README.md 初始化 2025-10-20 21:21:14 +08:00

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

<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
	text: "http://jindo.dev.naver.com/collie",
	width: 128,
	height: 128,
	colorDark : "#000000",
	colorLight : "#ffffff",
	correctLevel : QRCode.CorrectLevel.H
});
</script>

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

FixList

This repository has been modifiedFixList is as follows:

1.Fixed Cannot read property '_android' of undefined.

2.QRCodeLimitLength. Fixed length check on for loop.

Bitdeli Badge