forked from educastellano/qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 876 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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title><qr-code></title>
<!-- Importing Web Component's Polyfill -->
<!--<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.0.20130905/polymer.min.js"></script>-->
<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.0.20130711/polymer.min.js"></script>
<script src="src/qr.js"></script>
<!-- Importing Custom Elements -->
<link rel="import" href="src/qr-code.html">
<style>
.content {
padding: 50px;
margin-left: 200px;
}
input {
font-size: 1.2em;
width: 300px
}
</style>
</head>
<body>
<div class="content">
<input type="text"
value="bla bla blaaaaaaaaaahhh"
oninput="document.querySelector('qr-code').data = this.value"
autofocus
/>
<br><br>
<!-- Using Custom Elements -->
<qr-code data="bla bla blaaaaaaaaaahhh"></qr-code>
</div>
</body>
</html>