-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (104 loc) · 3.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Okay</title>
<!-- <link rel="stylesheet" href="styles.css" /> -->
<script src="display.js"></script>
</head>
<body>
<div class="header_back">
<div class="header_face"></div>
</div>
<div class="content_back">
<div class="content_face">
<table style="width: 100%; height: 100%" border="0" cellspacing="0">
<tr>
<td class="menu_bar" rowspan="2">
<div id="BT"></div>
<table>
<tr>
<td class="comment" colspan="4"><br />Device IP:</td>
</tr>
<tr>
<td colspan="4">
<input
id="ip_addr"
style="width: 100%; text-align: center"
type="text"
value="192.168.0.159"
disabled
/>
</td>
</tr>
<tr>
<td class="comment" colspan="4"><br />Bounds:</td>
</tr>
<tr id="XY">
<td class="comment">x:</td>
<td>
<input
id="nud_x"
class="nud"
type="text"
value="0"
disabled
/>
</td>
<td class="comment">y:</td>
<td>
<input
id="nud_y"
class="nud"
type="text"
value="0"
disabled
/>
</td>
</tr>
<tr id="WH">
<td class="comment">w:</td>
<td>
<input
id="nud_w"
class="nud"
type="text"
value="128"
disabled
/>
</td>
<td class="comment">h:</td>
<td>
<input
id="nud_h"
class="nud"
type="text"
value="296"
disabled
/>
</td>
</tr>
</table>
<div id="RB">2.9d</div>
</td>
<td class="content_body">
<span class="title">Original image</span><br />
<canvas id="source" class="hidden_input"></canvas>
<div id="srcBox">
<!-- <div class="imgBox">
<div class="mesBox">Drop image here...</div>
</div> -->
</div>
</td>
</tr>
<tr>
<td id="dstBox" class="content_body"></td>
</tr>
</table>
</div>
</div>
<div class="footer_back">
<div class="footer_face" id="logTag"></div>
</div>
</body>
</html>