-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 941 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 lang="en">
<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>聚类结果</title>
<%- g6Script %>
<style>
body {
padding: 5px;
box-sizing: border-box;
}
.download-button {
margin: 10px 0;
}
</style>
</head>
<body>
<button class="download-button">下载</button>
<select class="type-select">
<option value="image/png">png</option>
<option value="image/jpeg">jpeg</option>
<option value="image/webp">webp</option>
<option value="image/bmp">bmp</option>
</select>
<div id="app">
<div
id="container"
style="height: 2000px; width: 3000px; border: 1px solid black"
></div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>