-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<meta http-equiv="pragma" content="no-cache">
<title>QR app</title>
<link type="text/css" rel="stylesheet" href="style/camera.css"/>
<!--<script type="text/javascript" src="js/camera.js"></script>-->
<style type="text/css">
video{
position:absolute;
top:0px;
left:0px;
z-index:1;
width:527px;
}
#qr-canvas{
position:absolute;
top:0px;
left:0px;
z-index:3;
}
</style>
</head>
<body>
<canvas id="qr-canvas"></canvas>
<video id="viewfinder" poster="black.png">
<source src="demo.webm" type=video/webm />
<source src="demo.ogv" type=video/ogg />
<source src="demo.mp4" type=video/mp4 />
</video>
<div id="controls">
<a id="switch-button" name="Switch source"></a>
<a id="capture-button" name="Capture"></a>
<a id="gallery-button" name="Go to gallery"></a>
</div>
<script type="text/javascript" src="js/grid.js"></script>
<script type="text/javascript" src="js/version.js"></script>
<script type="text/javascript" src="js/detector.js"></script>
<script type="text/javascript" src="js/formatinf.js"></script>
<script type="text/javascript" src="js/errorlevel.js"></script>
<script type="text/javascript" src="js/bitmat.js"></script>
<script type="text/javascript" src="js/datablock.js"></script>
<script type="text/javascript" src="js/bmparser.js"></script>
<script type="text/javascript" src="js/datamask.js"></script>
<script type="text/javascript" src="js/rsdecoder.js"></script>
<script type="text/javascript" src="js/gf256poly.js"></script>
<script type="text/javascript" src="js/gf256.js"></script>
<script type="text/javascript" src="js/decoder.js"></script>
<script type="text/javascript" src="js/qrcode.js"></script>
<script type="text/javascript" src="js/findpat.js"></script>
<script type="text/javascript" src="js/alignpat.js"></script>
<script type="text/javascript" src="js/databr.js"></script>
<script type="text/javascript" src="js/qrapp.js"></script>
</body>
</html>