-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (29 loc) · 883 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
<!DOCTYPE html>
<html>
<head>
<title>AgriCraft Graph</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div id="explain">
<!--<h2 id="packTitle">Loading...</h2>-->
<label for="selectMode">Version:</label> <select name="modes" id="selectMode"></select>
<hr>
<h3>Click a crop to show the breeding tree.</h3>
<button id="btnReset">Reset the view</button>
<button id="btnClearOwned">Clear Owned Crops</button>
<p>
<span style="color:blue">Blue</span> nodes are potential offspring.
<br>
<span style="color:red">Red</span> nodes are required to breed.
<br>
Right click or long tap a node to it as owned.
</p>
<hr>
<ul id="list"></ul>
</div>
<div id="cy"></div>
<script src="lib/jquery-1.12.3.min.js"></script>
<script src="lib/require.js" data-main="main.js"></script>
</body>
</html>