-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
53 lines (48 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Artransfer</title>
<link rel="stylesheet" href="/src/ui/main.scss">
</head>
<body>
<main>
<header>
<h2 class="title">Artransfer</h2>
<p class="sub">将评论数据转换为 Artrans</p>
</header>
<div class="workbench">
<!-- 源文件 -->
<div class="block">
<div class="inner">
<div class="form-grp">
<label>选择格式</label>
<select id="srcFormat" class="encoder-list">
<option selected disabled value="">-</option>
</select>
</div>
<div class="form-grp">
<label>上传文件</label>
<input type="file" id="importFile">
</div>
<!--<div class="form-grp">
<div class="desc">
提示:导出方法请查阅,
</div>
</div>-->
</div>
</div>
<div class="to-icon"></div>
<!-- 目标文件 -->
<div class="block">
<div class="inner">
<button class="export-btn" id="exportBtn">下载 Artrans</button>
</div>
</div>
</div>
</main>
<script type="module" src="/src/ui/main.ts"></script>
</body>
</html>