-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (26 loc) · 835 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title><a-qrcode></title>
<!-- Importing Web Component's Polyfill -->
<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.0.20131107/polymer.min.js"></script>
<script src="src/qrcode.min.js" type="text/javascript"></script>
<!-- Importing Custom Elements -->
<link rel="import" href="src/a-qrcode.html">
</head>
<body>
<!-- Using Custom Elements -->
<form onsubmit="return generateQRCode();">
<input id="url" name="url" value="http://www.google.com"/>
<input type="submit" value="generate"/>
</form>
<a-qrcode id="qrcode" width="360" height="360" code="http://www.google.com"></a-qrcode>
<script>
function generateQRCode() {
document.getElementById('qrcode').code = document.getElementById('url').value;
return false;
}
</script>
</body>
</html>