-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (71 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<title>Fish in a Barrel</title>
<link rel="stylesheet" type="text/css" href="interface.css">
</head>
<body onresize="doResize()">
<div id="topRow" class="row">
<div id="topColLeft" class="column">
Fish In a Barrel - A perpetual work in progress.
</div>
<div id="topColRight" class="column">
<div id="menuBar">
<a href="#" onclick="loadStuff()">Load</a>
/
<a href="#" onclick="saveStuff()">Save</a>
/
<a href="#" onclick="importStuff()">Import</a>
/
<a href="#" onclick="exportStuff()">Export</a>
</div>
</div>
</div>
<div id="midRow" class="row">
<div id="midColLeft" class="column">
<div id="itemTableDiv">
</div>
</div>
<div id="midColCenter" class="column">
<p>
<!-- <button onclick="startFish()">Start</button> -->
<!-- <button onclick="stopFish()">Stop</button> -->
<button onclick="buyFish()">Buy Fish</button>
<button onclick="sellFish()">Sell Fish</button>
Use arrow keys or w,s,a,d to move fishing line.
</p>
<div id ="fishTank">
<!-- <div id ="fish"> -->
<!-- <span id="fishText"></span> -->
<!-- </div> -->
</div>
<!-- <div id="fishTank2"> -->
<!-- <div id="fish2"> -->
<!-- <p> -->
<!-- Small Fish: >|> -->
<!-- <br> -->
<!-- <br> -->
<!-- Dead Fish: >++++|> -->
<!-- <br> -->
<!-- <br> -->
<!-- Big Fish: >#########|> -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
</div>
<div id="midColRight" class="column">
<div id="logTableDiv">
</div>
</div>
</div>
<div id="bottomRow" class="row">
<div id="debug">
Tank Size:
<span id="tankSize"></span>
Number of Fish:
<span id="numFish">0</span>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>