-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1007 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>
<head>
<meta charset="utf-8" />
<title>Simple GreedySpiders</title>
<link rel="stylesheet" href="./assets/style.css" />
<link rel="shortcut icon" href="./assets/spider.png" />
<input type="file" name="graph" id="input-file" />
</head>
<body>
<div class="choose-mode">
<span>You play as:</span>
<select name="mode" id="select-mode">
<option value="0" selected>Butterfly</option>
<option value="1">Spider</option>
</select>
</div>
<div class="start-button">
<button>Start !</button>
</div>
<form></form>
<!-- Libraries I uesd -->
<script src="./src/jquery-3.4.1.min.js"></script>
<script src="./src/d3.v3.min.js"></script>
<script src="./src/graph.js"></script>
<script src="./src/FileSaver.js"></script>
<script src="./src/anime.min.js"></script>
<!-- My codes -->
<script src="./config.js"></script>
<script src="./src/toast.js"></script>
<script src="./process.js"></script>
</body>