-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 2.42 KB
/
Copy pathindex.html
File metadata and controls
74 lines (65 loc) · 2.42 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WEISUANDI | 月球基地畅想</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/fx.css">
<link rel="stylesheet" href="styles/hud.css">
<link rel="stylesheet" href="styles/plan-systems.css">
</head>
<body class="page-home">
<!-- Loading Screen -->
<div id="loader">
<div class="loader-ring"></div>
<div class="loader-text">正在构建月球地形...</div>
<div class="loader-percent" id="loader-percent">0%</div>
<div class="fx-boot-log" aria-hidden="true"></div>
</div>
<!-- Navigation -->
<nav>
<a href="index.html" class="logo">WEISUANDI</a>
<ul class="nav-links">
<li><a href="menu.html">基地导览</a></li>
<li><a href="plan.html">沙盘推演</a></li>
</ul>
</nav>
<!-- Hero / 3D Scene -->
<section id="vision" style="padding:0;">
<div id="hero">
<div id="canvas-container"></div>
<div class="hero-overlay"></div>
<div class="hero-text">
<h1>月球基地<br><span>Moon Base</span></h1>
<p>在寂静的灰色荒原上,人类文明的下一站正在崛起。点击月球表面的任意基地标记,即可开启你的多基地沙盘推演。</p>
<a href="menu.html" class="hero-cta">
<span class="hero-cta-icon">🌙</span>
<span>开启月球基地导览</span>
<span class="hero-cta-arrow">→</span>
</a>
</div>
<div id="marker-tooltip"></div>
<div class="scroll-hint">点击标记开始推演</div>
</div>
</section>
<footer>
<p>© 2026 WEISUANDI · weisuandi.com · 月球基地畅想项目</p>
</footer>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.128.0/build/three.module.js",
"three/": "https://unpkg.com/three@0.128.0/"
}
}
</script>
<script type="module" src="scripts/home.js" charset="utf-8"></script>
<script src="scripts/cosmos-ui.js"></script>
<script src="scripts/fx.js"></script>
<script src="scripts/navigator.js"></script>
<script src="scripts/music-player.js"></script>
</body>
</html>