-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (67 loc) · 2.8 KB
/
index.html
File metadata and controls
83 lines (67 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Biome Mapper">
<link rel="apple-touch-icon" href="images/favicon.ico">
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<title>Helldivers 2 Biome Mapper</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, user-scalable=yes" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="planetCanvas"></canvas>
<div id="sectorName">
<h1>Sector Name</h1>
</div>
<div id="overlay" class="hidden"></div>
<div id="dialogBox" class="hidden">
<button id="closeDialogBtn" aria-label="Close dialog">×</button>
<div class="dialog-content">
<h2>APPLICATION USER MANUAL FOR PROSPECTIVE HELLDIVERS</h2>
<p>Refresh the app manually to fetch live data for budgetary reasons.</p>
<p>Hover over planets to see their name, biome, sector, and dangers.</p>
<p>You can hide unplayable planets with the planet button.</p>
<button class="mock-hideBtn">
<span class="circle"></span>
</button>
<p>Click on a biome to filter to the planets of that biome.</p>
<p>You can pin a biome to always show with the radio button.</p>
<button class="mock-toggle" aria-pressed="false" aria-label="Mock Toggle"></button>
<p>The yellow dots indicate how lucrative a biome is for points of interest.</p>
<div class="mock-hippo-buttons">
<button class="mock-hippo-dot" aria-label="Mock Yellow Hippo 1"></button>
<button class="mock-hippo-dot" aria-label="Mock Yellow Hippo 2"></button>
<button class="mock-hippo-dot" aria-label="Mock Yellow Hippo 3"></button>
</div>
<p>The existence of low yield biomes implies the existence of high yield biomes, and we can take some solace in
that.</p>
</div>
</div>
</div>
<button id="hamburgerBtn" aria-label="Toggle Biome Menu" aria-expanded="true">
<span></span>
<span></span>
<span></span>
</button>
<button id="hideBtn" class="on">
<span class="circle"></span>
</button>
<button id="dialogBtn">
<span>?</span>
</button>
<div id="biomeList"></div>
<a href="https://ko-fi.com/eightsummits" target="_blank" rel="noopener noreferrer" style="text-decoration:none;">
<div id="kofi-wrapper" title="Support Democracy on Ko-fi">
<div id="kofi-icon-container">
<img src="images/ko-fi_helldivers.png" alt="Ko-fi Support Icon" />
</div>
<div id="kofi-text">Support Democracy on Ko-fi</div>
</div>
</a>
<script src="app.js"></script>
</body>
</html>