feat: Implement loading screen with retro 80s aesthetic and unit tests
Run Tests / test (pull_request) Failing after 36s

This commit is contained in:
User
2026-03-22 11:37:11 +00:00
parent a29b01f26e
commit 37b5511439
5 changed files with 260 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Flight Simulator - Loading</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/screens.css">
</head>
<body>
<div id="loading-screen" class="loading-screen">
<div class="loading-content">
<div class="logo">
<div class="logo-block"></div>
<div class="logo-block"></div>
<div class="logo-block"></div>
<div class="logo-text">WINGS88</div>
</div>
<div class="copyright">(c) 1988 RetroWeb Games</div>
<div class="loading-bar">
<div class="loading-progress"></div>
</div>
<div class="loading-text">Loading assets...</div>
</div>
</div>
<script src="js/screens/loading.js"></script>
</body>
</html>