-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 2.06 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 2.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Batarong Clicker</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="assets/images/favicon.png" sizes="512x512">
</head>
<body>
<button class="report-bug-btn" onclick="window.location='mailto:foxxertech@aol.com'">
Report a bug
</button>
<!-- Main clicker -->
<div class="clickhere">
<p id="totalrate">Total Income: +0/sec</p>
<p id="batarongsclicked">Batarongs: 0</p>
<button id="batarongbut">
<img src="assets/images/Batarong.png" alt="Batarong">
</button>
</div>
<!-- Button to open upgrades -->
<button id="openUpgrades" class="upgrade-toggle-btn">Show Upgrades</button>
<!-- Upgrades panel -->
<div id="upgradesPanel" class="upgrades-panel">
<button id="closeUpgrades" class="close-btn">X</button>
<!-- YouTube Upgrade -->
<div class="upgrade-item">
<button id="bataytclick">
<span class="batayt-count"><h2 id="bycount">0</h2></span>
<img src="assets/images/bty.png" alt="YouTube Upgrade">
</button>
<p id="bytcost">Cost: 10 Batarongs.<br>Doubles click production</p>
</div>
<!-- SOPV Upgrade -->
<div class="upgrade-item">
<button id="sopvclick">
<span class="sopv-count"><h2 id="sopvcount">0</h2></span>
<img src="assets/images/sopv.png" alt="SOPV Upgrade">
</button>
<p id="sopvcost">Cost: 100 Batarongs.<br>Gives 1 batarong /sec</p>
<p id="sopvrate">Income: +0/sec</p>
</div>
<!-- MED Upgrade -->
<div class="upgrade-item">
<button id="medclick">
<span class="med-count"><h2 id="medcount">0</h2></span>
<img src="assets/images/med.png" alt="MED Upgrade">
</button>
<p id="medcost">Cost: 500 Batarongs.<br>Gives 3 batarongs /sec<br>Triples Click Production</p>
<p id="medrate">Income: +0/sec</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>