-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1021 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Camera App</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="setting">
<h2>设置</h2>
<form id="form">
<div class="form-row">
<label for="ip">IP: </label>
<div class="input-container"><input type="text" name="ip" value="192.168.2.51"></div>
</div>
<div class="form-row">
<label for="port">Port: </label>
<div class="input-container"><input type="text" name="port" value="10086"></div>
</div>
</form>
</div>
<button id="connect">开始</button></div>
<div class="display" style="display: none;">
<div class="container" style="width: 800px; height: 450px; margin: 0 auto;">
<img id="screen" src="" alt="">
</div>
</div>
<div>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>