~cytrogen/realm

realm/map.html -rw-r--r-- 9.2 KiB
f6d51824 — Cytrogen 更新联系方式 5 days ago
                                                                                
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>领地总览 — Realm</title>
	<meta name="description" content="领地总览 — Bird's-eye overview of the entire Realm territory">
	<meta name="theme-color" content="#1a1a2e">
	<link rel="stylesheet" href="realm.css">
</head>
<body>

	<a class="skip-link" href="#scene-nav-map">跳过场景</a>

	<main class="realm-scene" style="--scene-bg: oklch(0.12 0.03 290); --scene-max-width: none">
		<h1 class="visually-hidden">领地总览</h1>

		<div class="realm-scene__content">
		<div class="realm-scene__backdrop">

			<svg role="group" aria-labelledby="scene-map-title" viewBox="0 0 800 500">
				<title id="scene-map-title">领地总览 — Map board showing neighbors, castle, and interior zones</title>

				<!-- Background -->
				<rect class="fill-sky" x="0" y="0" width="800" height="500"/>

				<!-- Board frame -->
				<rect class="fill-wall-dark" x="30" y="15" width="740" height="470"/>

				<!-- Board surface -->
				<rect class="fill-board" x="45" y="30" width="710" height="440"/>

				<!-- ============================================================
				     ZONE FILLS (non-interactive backgrounds)
				     ============================================================ -->

				<!-- Neighbors zone -->
				<rect class="fill-mountain" x="60" y="75" width="170" height="330"/>

				<!-- Castle zone -->
				<rect class="fill-wall" x="250" y="75" width="490" height="330"/>

				<!-- Interior zone (nested in castle) -->
				<rect class="fill-mountain-far" x="280" y="165" width="435" height="150"/>

				<!-- ============================================================
				     ZONE HEADERS (clickable bands → zone scene pages)
				     ============================================================ -->

				<!-- Zone header: 邻邦 -->
				<a class="hotspot" href="neighbors.html" aria-label="邻邦 — Neighboring lands">
					<title>邻邦 — Neighboring lands</title>
					<rect class="hotspot-shape" x="60" y="75" width="170" height="25"/>
					<text class="scene-title" x="145" y="94" text-anchor="middle">邻 邦</text>
				</a>

				<!-- Zone header: 城堡 -->
				<a class="hotspot" href="castle.html" aria-label="城堡 — Castle">
					<title>城堡 — Castle</title>
					<rect class="hotspot-shape" x="250" y="75" width="490" height="25"/>
					<text class="scene-title" x="495" y="94" text-anchor="middle">城 堡</text>
				</a>

				<!-- Zone header: 内部 -->
				<a class="hotspot" href="interior.html" aria-label="城堡内部 — Castle interior">
					<title>城堡内部 — Castle interior</title>
					<rect class="hotspot-shape" x="280" y="165" width="435" height="24"/>
					<text class="scene-title" x="497" y="183" text-anchor="middle">内 部</text>
				</a>

				<!-- ============================================================
				     NEIGHBORS SUB-HOTSPOTS (dot markers)
				     ============================================================ -->

				<!-- 友邻 (Friends) -->
				<a class="hotspot" href="friends.html" aria-label="友邻 — Friends">
					<title>友邻 — Friends</title>
					<circle class="fill-accent-dim" cx="95" cy="145" r="4"/>
					<text class="map-label" x="109" y="149">友邻</text>
				</a>

				<!-- 属地 (Hosted) -->
				<a class="hotspot" href="hosted.html" aria-label="属地 — Hosted services">
					<title>属地 — Hosted</title>
					<circle class="fill-accent-dim" cx="95" cy="215" r="4"/>
					<text class="map-label" x="109" y="219">属地</text>
				</a>

				<!-- 旅馆 (Hotel / Gemini) -->
				<a class="hotspot" href="hotel.html" aria-label="胶囊旅馆 — Gemini protocol">
					<title>胶囊旅馆 — Gemini</title>
					<circle class="fill-accent-dim" cx="95" cy="290" r="4"/>
					<text class="map-label" x="109" y="294">旅馆</text>
				</a>

				<!-- 驿站 (Station) -->
				<a class="hotspot" href="station.html" aria-label="驿站 — Relay station">
					<title>驿站 — Relay station</title>
					<circle class="fill-accent-dim" cx="95" cy="365" r="4"/>
					<text class="map-label" x="109" y="369">驿站</text>
				</a>

				<!-- ============================================================
				     INTERIOR SUB-HOTSPOTS (2x2 grid inside castle)
				     ============================================================ -->

				<!-- 图书馆 (Blog / Library) — external link -->
				<a class="hotspot" href="https://blog.cytrogen.icu" aria-label="图书馆 — Blog">
					<title>图书馆 — Blog</title>
					<circle class="fill-accent-dim" cx="370" cy="225" r="4"/>
					<text class="map-label" x="384" y="229">图书馆</text>
				</a>

				<!-- 工坊 (Colophon / Workshop) -->
				<a class="hotspot" href="colophon.html" aria-label="工坊 — Colophon">
					<title>工坊 — Colophon</title>
					<circle class="fill-accent-dim" cx="580" cy="225" r="4"/>
					<text class="map-label" x="594" y="229">工坊</text>
				</a>

				<!-- 兵器库 (Uses / Armory) -->
				<a class="hotspot" href="uses.html" aria-label="兵器库 — Uses">
					<title>兵器库 — Uses</title>
					<circle class="fill-accent-dim" cx="370" cy="280" r="4"/>
					<text class="map-label" x="384" y="284">兵器库</text>
				</a>

				<!-- 典籍室 (Canon / Archive) -->
				<a class="hotspot" href="canon.html" aria-label="典籍室 — Canon">
					<title>典籍室 — Canon</title>
					<circle class="fill-accent-dim" cx="580" cy="280" r="4"/>
					<text class="map-label" x="594" y="284">典籍室</text>
				</a>

				<!-- ============================================================
				     CASTLE SUB-HOTSPOTS (below interior zone)
				     ============================================================ -->

				<!-- 联络处 (Contact) -->
				<a class="hotspot" href="contact.html" aria-label="联络处 — Contact">
					<title>联络处 — Contact</title>
					<circle class="fill-accent-dim" cx="345" cy="355" r="4"/>
					<text class="map-label" x="359" y="359">联络处</text>
				</a>

				<!-- 公告 (Announcement) -->
				<a class="hotspot" href="announcement.html" aria-label="领地公告 — Announcement">
					<title>领地公告 — Announcement</title>
					<circle class="fill-accent-dim" cx="497" cy="355" r="4"/>
					<text class="map-label" x="511" y="359">公告</text>
				</a>

				<!-- 遗言 (Death) -->
				<a class="hotspot" href="death.html" aria-label="遗言 — Death">
					<title>遗言 — Death</title>
					<circle class="fill-accent-dim" cx="640" cy="355" r="4"/>
					<text class="map-label" x="654" y="359">遗言</text>
				</a>

				<!-- ============================================================
				     DECORATIVE + NAVIGATION
				     ============================================================ -->

				<!-- Compass rose (bottom-right of board) -->
				<g class="scene-detail" aria-hidden="true" transform="translate(710,445)">
					<polygon class="fill-wall-light" points="0,-16 4,-4 0,-6 -4,-4"/>
					<polygon class="fill-wall" points="0,16 4,4 0,6 -4,4"/>
					<polygon class="fill-wall" points="-16,0 -4,-4 -6,0 -4,4"/>
					<polygon class="fill-wall" points="16,0 4,-4 6,0 4,4"/>
					<circle class="fill-accent-shape" cx="0" cy="0" r="2"/>
				</g>

				<!-- Return hotspot (bottom-left of board) -->
				<a class="hotspot" href="neighbors.html" aria-label="返回邻邦 — Return to neighbors">
					<title>返回 — Return to neighbors</title>
					<rect class="hotspot-shape" x="55" y="432" width="65" height="22"/>
					<text class="scene-title" x="87" y="448" text-anchor="middle">◁ 返回</text>
				</a>

				<!-- Scene title (rendered last to stay on top) -->
				<text class="scene-title" x="400" y="58" text-anchor="middle">领 地 总 览</text>
			</svg>

		</div>
		</div>

		<nav id="scene-nav-map" class="scene-nav" aria-label="领地总览导航">
			<ul class="scene-nav__list">
				<li><a class="scene-nav__link" href="neighbors.html">邻邦 — 邻近区域</a></li>
				<li><a class="scene-nav__link" href="castle.html">城堡 — 城堡外观</a></li>
				<li><a class="scene-nav__link" href="interior.html">城堡内部 — 城堡内部</a></li>
				<li><a class="scene-nav__link" href="friends.html">友邻 — 友人</a></li>
				<li><a class="scene-nav__link" href="hosted.html">属地 — 自托管服务</a></li>
				<li><a class="scene-nav__link" href="hotel.html">胶囊旅馆 — Gemini</a></li>
				<li><a class="scene-nav__link" href="station.html">驿站 — 中转站</a></li>
				<li><a class="scene-nav__link" href="https://blog.cytrogen.icu">图书馆 — 博客</a></li>
				<li><a class="scene-nav__link" href="colophon.html">工坊 — 站点构成</a></li>
				<li><a class="scene-nav__link" href="uses.html">兵器库 — 装备</a></li>
				<li><a class="scene-nav__link" href="canon.html">典籍室 — 书籍与灵感</a></li>
				<li><a class="scene-nav__link" href="contact.html">联络处 — 联系方式</a></li>
				<li><a class="scene-nav__link" href="announcement.html">公告 — 领地公告</a></li>
				<li><a class="scene-nav__link" href="death.html">遗言 — 墓志铭</a></li>
				<li><a class="scene-nav__link" href="neighbors.html">返回邻邦</a></li>
			</ul>
		</nav>

		<nav class="realm-scene__nav realm-nav">
			<a href="neighbors.html">← 返回邻邦</a>
		</nav>
	</main>

</body>
</html>