118 lines
4.2 KiB
HTML
118 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Wackelpeter</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body { width: 100%; height: 100%; overflow: hidden; background: #000; }
|
|
canvas { display: block; }
|
|
#ui-overlay {
|
|
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
|
|
pointer-events: none; font-family: monospace; z-index: 10;
|
|
}
|
|
#health-bar-bg {
|
|
position: absolute; top: 16px; left: 16px; width: 250px; height: 20px;
|
|
background: rgba(0,0,0,0.6); border: 2px solid #555;
|
|
}
|
|
#health-bar {
|
|
position: absolute; top: 16px; left: 16px; width: 250px; height: 20px;
|
|
background: #cc0000;
|
|
transition: width 0.1s linear;
|
|
}
|
|
#health-text {
|
|
position: absolute; top: 16px; left: 16px; width: 250px; height: 20px;
|
|
text-align: center; line-height: 20px; color: #fff; font-size: 12px;
|
|
}
|
|
#wave-label {
|
|
position: absolute; top: 48px; left: 16px; color: #ffcc00; font-size: 18px;
|
|
font-family: monospace; text-shadow: 2px 2px 4px #000;
|
|
}
|
|
#kills-label {
|
|
position: absolute; top: 72px; left: 16px; color: #ffcc00; font-size: 16px;
|
|
font-family: monospace; text-shadow: 2px 2px 4px #000;
|
|
}
|
|
.cooldown-container {
|
|
position: absolute; left: 16px; width: 200px; height: 16px;
|
|
}
|
|
.cooldown-bg {
|
|
width: 100%; height: 100%; background: rgba(0,0,0,0.6); border: 1px solid #555;
|
|
}
|
|
.cooldown-fill {
|
|
height: 100%; background: #2266dd; transition: width 0.05s linear;
|
|
}
|
|
.cooldown-label {
|
|
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
|
|
text-align: left; line-height: 16px; color: #fff; font-size: 11px;
|
|
padding-left: 4px; font-family: monospace;
|
|
}
|
|
#fireball-cooldown { bottom: 72px; }
|
|
#sword-cooldown { bottom: 48px; }
|
|
#teleport-cooldown { bottom: 24px; }
|
|
#wave-bar-container {
|
|
position: absolute; top: 16px; right: 16px; width: 250px; height: 16px;
|
|
}
|
|
#wave-bar-bg {
|
|
width: 100%; height: 100%; background: rgba(0,0,0,0.6); border: 1px solid #555;
|
|
}
|
|
#wave-bar-fill {
|
|
height: 100%; background: #ccaa00; transition: width 0.1s linear;
|
|
}
|
|
#wave-bar-label {
|
|
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
|
|
text-align: center; line-height: 16px; color: #fff; font-size: 11px;
|
|
font-family: monospace;
|
|
}
|
|
#game-over {
|
|
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
|
|
font-size: 100px; color: #fff; font-family: monospace; opacity: 0;
|
|
text-shadow: 4px 4px 8px #000;
|
|
transition: opacity 2s ease-in;
|
|
}
|
|
#instructions {
|
|
position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
|
|
color: rgba(255,255,255,0.5); font-size: 11px; font-family: monospace;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="ui-overlay">
|
|
<div id="health-bar-bg"></div>
|
|
<div id="health-bar"></div>
|
|
<div id="health-text">100%</div>
|
|
<div id="wave-label">Wave 0</div>
|
|
<div id="kills-label">Kills: 0</div>
|
|
|
|
<div id="fireball-cooldown" class="cooldown-container">
|
|
<div class="cooldown-bg"></div>
|
|
<div class="cooldown-fill"></div>
|
|
<div class="cooldown-label">Fireball</div>
|
|
</div>
|
|
<div id="sword-cooldown" class="cooldown-container">
|
|
<div class="cooldown-bg"></div>
|
|
<div class="cooldown-fill"></div>
|
|
<div class="cooldown-label">Sword</div>
|
|
</div>
|
|
<div id="teleport-cooldown" class="cooldown-container">
|
|
<div class="cooldown-bg"></div>
|
|
<div class="cooldown-fill"></div>
|
|
<div class="cooldown-label">Teleport</div>
|
|
</div>
|
|
|
|
<div id="wave-bar-container">
|
|
<div id="wave-bar-bg"></div>
|
|
<div id="wave-bar-fill"></div>
|
|
<div id="wave-bar-label">Next Wave...</div>
|
|
</div>
|
|
|
|
<div id="game-over">Verloren!</div>
|
|
<div id="instructions">
|
|
WASD: Move · Space: Jump · Mouse: Aim · Left Click: Fireball · Right Click: Sword · M3: Swap hands · E: Teleport
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|