-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (107 loc) · 3.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>IdleH4ck3r</title>
<link rel="stylesheet" href="https://unpkg.com/98.css">
<link rel="stylesheet" href="main.css">
<link rel="manifest" href="manifest.webmanifest">
<meta name="viewport" content="width=device-width, user-scalable=no" />
</head>
<body>
<div class="window" id="main">
<div class="title-bar">
<div class="title-bar-text">
IdleH4ck3r
</div>
<div class="title-bar-controls">
<button data-open-help aria-label="Help"></button>
</div>
</div>
<div class="window-body">
<section>
<table width="100%">
<tr>
<td width="50%">
Total Ram Usage: <span data-ram-usage>2</span>MB
<br />
<br />
Wallet: <span data-money>0</span>µ₿
</td>
<td width="50%" align="right" valign="top">
<button data-open-upgrades>Purchase Upgrades</button>
</td>
</tr>
</table>
</section>
<sections />
</div>
</div>
<div class="window hidden" id="upgrades">
<div class="title-bar">
<div class="title-bar-text">
Upgr4d3s
</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<upgrades />
</div>
</div>
<div class="window hidden" id="help">
<div class="title-bar">
<div class="title-bar-text">
4bout
</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>
Just another idle game. Use as much ram as possible. Sell heat generated for money.
</p>
<p>
Chris Taylor <a href="https://christhebaron.co.uk" target="_blank">christhebaron.co.uk</a>
</p>
<hr />
<p>
<u>Options</u>
</p>
<div class="field-row">
<input type="checkbox" id="sounds">
<label for="sounds">Sounds</label>
</div>
<div class="field-row">
<input type="checkbox" id="music">
<label for="music">Music</label>
</div>
<hr />
<p>
Made using
<a href="https://jdan.github.io/98.css/" target="_blank">
98.css by @jdan
</a>
<br />
Licensed under <a href="https://github.com/jdan/98.css/blob/main/LICENSE" target="_blank">MIT License</a>
</p>
<p>
Sound Effects by
<a href="https://freesound.org/people/Headphaze/" target="_blank">@Headphaze</a>
<br />
Licensed under <a href="https://creativecommons.org/licenses/by/3.0/" target="_blank">Attribution 3.0 Unported (CC BY 3.0)</a>
</p>
<p>
Background music from <a href="https://www.playonloop.com/2015-music-loops/pocket-garden/" target="_blank">PlayOnLoop.com</a>
<br />
Licensed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">Creative Commons by Attribution 4.0</a>
</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.0/howler.core.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="main.js"></script>
</body>
</html>