-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_cn.html
41 lines (41 loc) · 1.28 KB
/
index_cn.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>
<title>SoftKVM-BLE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="setup">
<label for="serialPortSelect">串口选择:</label>
<select id="serialPortSelect">
<!-- Dynamically populated -->
</select>
<label for="ctrlMetaToggle">切换Ctrl/Meta键:</label>
<input type="checkbox" id="ctrlMetaToggle">
<label for="invertScrollToggle">反转滚轮方向:</label>
<input type="checkbox" id="invertScrollToggle">
</div>
<div id="operate">
<button id="fullScreenButton">Full Screen Mode</button>
<button id="captureButton">Capture</button>
</div>
<div id="hotkeyInterface">
<div class="section">
<h3>请选择按键</h3>
<ul id="keyList">
<!-- Dynamically populated -->
</ul>
</div>
<div class="section">
<h3>待发送的组合</h3>
<ul id="selectedKeys">
<!-- Keys will be listed here -->
</ul>
<button id="clearSelectionButton">Clear</button>
<button id="sendKeysButton">Send</button>
</div>
</div>
<div id="messageArea"></div>
<script src="renderer.js"></script>
</body>
</html>