-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.23 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.23 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>DDV - HelloWorld</title>
<link rel="stylesheet" href="ddv.css">
<link rel="stylesheet" href="ddv-custom.css">
<script src="ddv.js"></script>
<script src="util.js"></script>
</head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overscroll-behavior-y: none;
overflow: hidden;
}
#container {
width: 100%;
height: 100%;
}
</style>
<body>
<div id="container"></div>
<!--<select id="sources">
</select>-->
<!--<input type="button" value="GetScanners" onclick="getSources();"/>
<input type="button" value="Scan Image" onclick="acquireImageFromScanner();"/>-->
<!--<input type="button" value="Capture Image" onclick="acquireImageFromCamera();" />-->
<!--<input type="button" value="Read barcode" onclick="scanBarcode();" />-->
<!--<input type="button" value="Save to pdf" onclick="onClickSaveToPdf();" />-->
</body>
<script>
</script>
</html>