forked from onsubmit/CraftClicker2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 2.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<title>CraftClicker2 0.01 alpha</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="js/jquery.ui.touch-punch.min.js"></script>
<script src="js/extensions.js"></script>
<script src="js/item.js"></script>
<script src="js/recipe.js"></script>
<script src="js/items.js"></script>
<script src="js/inventory.js"></script>
<script src="js/player.js"></script>
<script src="js/layer.js"></script>
<script src="js/tile.js"></script>
<script src="js/world.js"></script>
<script src="js/game.js"></script>
<script src="js/tests.js"></script>
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div id="leftColumn">
<div id="inventory" class="window">
<h1>Crafting</h1>
<div id="craftingContainer">
<table id="craftingTable">
<tr>
<td data-pos="0,0"><div class="accept"></div></td>
</tr>
</table>
<div>
<div id="craftArrow">
<button id="clearCraft">x</button><br />
<img src="images/ArrowRight.png" />
</div>
<table id="craftingOutputTable">
<tr>
<td class="craftingCell"><div id="craftingOutput"></div></td>
<td>
<div id="craftingTakeContainer">
<input id="craftingTakeAmount" value="1" readonly="readonly"/>
</div>
</td>
</tr>
</table>
</div>
</div>
<div id="inventoryContainer" class="clearBoth">
<h1>Inventory</h1>
<input id="inventoryFilter" class="filter" type="textbox" placeholder="Filter" />
<label id="inventoryMoveStacksLabel"><input id="inventoryMoveStacks" type="checkbox" />Drag stacks</label>
<ul id="inventoryList"></ul>
</div>
</div>
</div>
<div id="rightColumn">
<div id="items" class="window">
<h1>Items</h1>
<input id="itemFilter" class="filter" type="textbox" placeholder="Filter" />
<div id="itemList"></div>
</div>
</div>
<div id="middleColumn">
<div id="worldContainer">
<table id="world"></table>
<div id="buttons">
<button id="zoomIn" class="big">Zoom to tile</button>
</div>
</div>
<div id="tileContainer">
<button id="gather" class="big">Gather</button><button id="zoomOut" class="big">Return to world</button>
</div>
</div>
<!--<button onclick="game.save()">Save</button>
<button onclick="game.load()">Load</button>-->
</body>
</html>