-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 3.73 KB
/
Copy pathindex.html
File metadata and controls
68 lines (68 loc) · 3.73 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🚀</text></svg>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>Endless Zero</title>
<!-- Open Graph / iMessage, Discord, Slack, etc. -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Endless Zero" />
<meta property="og:description" content="Dodge the asteroids. Survive the void." />
<meta property="og:image" content="og-image.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Endless Zero" />
<meta name="twitter:description" content="Dodge the asteroids. Survive the void." />
<meta name="twitter:image" content="og-image.png" />
</head>
<body class="tui">
<div id="loading" class="loading-overlay" aria-live="polite">
<div class="loading-spinner" aria-hidden="true"></div>
<p class="loading-text">Loading...</p>
</div>
<div id="main-menu" class="main-menu-overlay" aria-label="Main menu" style="display: none;">
<div class="main-menu-panel">
<h1 class="main-menu-title">Endless Zero</h1>
<p class="main-menu-tagline">Dodge the asteroids. Survive the void.</p>
<button id="start-btn" type="button" class="main-menu-btn">Start</button>
</div>
</div>
<div id="app"></div>
<div class="hud-display">
<div id="parsecs-display" class="score-display" aria-live="polite">Parsecs: 0</div>
<div id="score" class="score-display" aria-live="polite">Score: 0</div>
</div>
<div id="bullet-fill" class="bullet-fill" aria-label="Bullet capacity" title="Bullet capacity">
<div id="bullet-dots" class="bullet-dots" aria-hidden="true"></div>
</div>
<div id="powerup-timer" class="powerup-timer" aria-live="polite" style="display: none;"></div>
<div id="pause-menu" class="overlay" style="display: none;" aria-label="Paused">
<div class="overlay-panel">
<h1>Paused</h1>
<button id="resume-btn" type="button" class="overlay-btn">Resume</button>
</div>
</div>
<div id="game-over" class="overlay" style="display: none;">
<div class="overlay-panel">
<h1>Game Over</h1>
<p>Asteroid impact.</p>
<button id="restart-btn" type="button" class="overlay-btn">Restart</button>
</div>
</div>
<div id="touch-joystick" class="touch-joystick" aria-hidden="true">
<div class="touch-joystick-base">
<div class="touch-joystick-knob"></div>
</div>
</div>
<button id="fullscreen-btn" type="button" class="fullscreen-btn" aria-label="Toggle full screen" title="Toggle full screen">
<svg class="fullscreen-icon fullscreen-icon-expand" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M8 3H5a2 2 0 0 0-2 2v3M21 8V5a2 2 0 0 0-2-2h-3M3 16v3a2 2 0 0 0 2 2h3M16 21h3a2 2 0 0 0 2-2v-3"/>
</svg>
<svg class="fullscreen-icon fullscreen-icon-exit" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" style="display: none;">
<path d="M8 3v3a2 2 0 0 1-2 2H3M21 8h-3a2 2 0 0 1-2-2V3M3 16h3a2 2 0 0 1 2 2v3M16 21v-3a2 2 0 0 1 2-2h3"/>
</svg>
</button>
<script type="module" src="/src/main.js"></script>
</body>
</html>