-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="icon.ico">
<title>Goofy Mania</title>
<link rel="stylesheet" href="./main.css">
<script src="./main.js" defer></script>
<script src="./Game.js"></script>
</head>
<body>
<div style="position: absolute; display: flex; justify-content: center; align-items: center; font-size: 3em; width: 100%; height: 100%;" id="loading-text"></div>
<a href="https://github.com/Lyall-A/Goofy-Mania-V2" style="position: absolute; top: 20px; left: 20px; color: red;">GOOFY MANIA<br>V2.0000000001 ALPHA<br>PART OF MULTIPACK NOT TO BE SOLD SEPERATELY<br><div style="text-decoration: line-through; color: red;">FEATURING NON-FUNCTIONAL SLIDERS</div><div style="text-decoration: line-through; color: red;">FEATURING BROKEN ACCURACY</div></a>
<div id="fps" style="position: fixed; bottom: 20px; left: 20px; color: red;">FPS: ---</div>
<div id="map-select" style="display: none; width: 100%;">
<h1 style="display: flex; justify-content: center; margin-top: 50px;">Map select (TEMP NOT FINAL!!!!!)</h1>
<div id="maps"></div>
</div>
<div id="level-select" style="display: none; width: 100%;">
<h1 style="display: flex; justify-content: center; margin-top: 50px;">Level select (TEMP NOT FINAL!!!!!)</h1>
<div id="levels"></div>
</div>
<div style="display: flex; position: absolute; justify-content: center; align-items: center; width: 100%; height: 100%; z-index: -1;" id="game-wrapper">
<div id="game" style="display: none; width: 100%; height: 100%; background-color: rgb(0, 0, 0); z-index: -1"></div>
</div>
</body>
</html>