forked from KeeeX/qrcodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Cross-Browser QRCode generator for Javascript</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<script type="text/javascript" src="qrcode.min.js"></script>
</head>
<body>
<p>Please type your input below, and press Enter.</p>
<input id="text" type="text" value="https://github.com/KeeeX/qrcodejs" style="width:80%" />
<div id="qrcode" style="width:200px; height:200px; margin-top:15px;" />
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
width : 200,
height : 200
});
var inputField = document.getElementById("text");
function makeCode () {
if (!inputField.value) {
inputField.focus();
return;
}
qrcode.makeCode(inputField.value);
}
makeCode();
inputField.addEventListener("keydown", (e) => {
if (e.keyCode == 13) {
makeCode();
}
});
inputField.addEventListener("blur", makeCode);
</script>
</body>