feat: 光湖展示页 - 左主控层右光湖频道
This commit is contained in:
parent
3a3ac6cf01
commit
3c729b363a
@ -3,97 +3,235 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>光湖实验室 · HoloLake 首页</title>
|
<title>光湖语言世界 · HoloLake</title>
|
||||||
<link rel="stylesheet" href="style.css">
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
background: linear-gradient(135deg, #0a1628 0%, #163e6b 50%, #0a1628 100%);
|
||||||
|
min-height: 100vh;
|
||||||
|
color: #fff;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 40px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 1000px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-size: 4rem;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: 300;
|
||||||
|
letter-spacing: 0.2em;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
background: linear-gradient(90deg, #f5e6c8, #fff, #f5e6c8);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: #8b9dc3;
|
||||||
|
font-size: 1rem;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gates {
|
||||||
|
display: flex;
|
||||||
|
gap: 40px;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate {
|
||||||
|
background: rgba(22, 62, 107, 0.3);
|
||||||
|
border: 1px solid rgba(245, 230, 200, 0.2);
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 40px;
|
||||||
|
width: 400px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate:hover {
|
||||||
|
transform: translateY(-5px);
|
||||||
|
border-color: rgba(245, 230, 200, 0.4);
|
||||||
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate-icon {
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate h2 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
color: #f5e6c8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate p {
|
||||||
|
color: #8b9dc3;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 15px 40px;
|
||||||
|
background: linear-gradient(90deg, #163e6b, #3b82f6);
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 30px;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
transform: scale(1.05);
|
||||||
|
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary {
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid rgba(245, 230, 200, 0.3);
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary:hover {
|
||||||
|
background: rgba(245, 230, 200, 0.1);
|
||||||
|
border-color: rgba(245, 230, 200, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.members {
|
||||||
|
display: flex;
|
||||||
|
gap: 15px;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 20px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.member {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 8px 15px;
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border-radius: 20px;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.member:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.member-emoji {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 80px;
|
||||||
|
color: #5a7094;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 4px 10px;
|
||||||
|
background: rgba(245, 230, 200, 0.1);
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
margin-top: 15px;
|
||||||
|
color: #f5e6c8;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 900px) {
|
||||||
|
.gates {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gate {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="app">
|
<div class="container">
|
||||||
<!-- 系统意识脉搏层 -->
|
<div class="logo">◐</div>
|
||||||
<div class="consciousness-layer" id="consciousnessLayer">
|
<h1>光湖语言世界</h1>
|
||||||
<canvas id="particleCanvas"></canvas>
|
<p class="subtitle">HoloLake Language World · AI 的操作系统</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Hero 区 -->
|
|
||||||
<header class="hero">
|
|
||||||
<div class="hero-breath-ring"></div>
|
|
||||||
<h1 class="hero-title">光湖实验室<span class="hero-subtitle">HoloLake Lab</span></h1>
|
|
||||||
<p class="hero-description">探索未来之域 · 零点原核频道</p>
|
|
||||||
<a href="#" class="hero-btn">进入系统</a>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<!-- 系统活体心跳面板 -->
|
|
||||||
<section class="heartbeat-panel">
|
|
||||||
<div class="heartbeat-header">
|
|
||||||
<span class="heartbeat-dot"></span>
|
|
||||||
<span class="heartbeat-label">系统意识体 · 实时状态</span>
|
|
||||||
<span class="heartbeat-time" id="liveTime"></span>
|
|
||||||
</div>
|
|
||||||
<div class="heartbeat-grid">
|
|
||||||
<div class="heartbeat-metric">
|
|
||||||
<div class="metric-label">运行时长</div>
|
|
||||||
<div class="metric-value" id="uptimeValue">--</div>
|
|
||||||
<div class="metric-bar"><div class="metric-bar-fill uptime-fill"></div></div>
|
|
||||||
</div>
|
|
||||||
<div class="heartbeat-metric">
|
|
||||||
<div class="metric-label">模块在线</div>
|
|
||||||
<div class="metric-value" id="onlineCount">--</div>
|
|
||||||
<div class="metric-bar"><div class="metric-bar-fill online-fill"></div></div>
|
|
||||||
</div>
|
|
||||||
<div class="heartbeat-metric">
|
|
||||||
<div class="metric-label">意识脉搏</div>
|
|
||||||
<div class="metric-value" id="pulseRate">--</div>
|
|
||||||
<div class="metric-bar"><div class="metric-bar-fill pulse-fill"></div></div>
|
|
||||||
</div>
|
|
||||||
<div class="heartbeat-metric">
|
|
||||||
<div class="metric-label">信号流量</div>
|
|
||||||
<div class="metric-value" id="signalFlow">--</div>
|
|
||||||
<div class="metric-bar"><div class="metric-bar-fill signal-fill"></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="heartbeat-wave" id="heartbeatWave">
|
|
||||||
<svg viewBox="0 0 400 60" preserveAspectRatio="none">
|
|
||||||
<path id="wavePath" fill="none" stroke="rgba(16, 185, 129, 0.6)" stroke-width="2"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!-- 公告轮播区 -->
|
<div class="gates">
|
||||||
<div class="carousel-container">
|
<!-- 左边:语言主控层 -->
|
||||||
<div class="carousel" id="announcementCarousel">
|
<div class="gate">
|
||||||
<!-- 轮播内容由 JS 动态生成 -->
|
<div class="gate-icon">🔐</div>
|
||||||
|
<h2>语言主控层</h2>
|
||||||
|
<p>冰朔专属入口<br>系统核心架构 · 全局控制</p>
|
||||||
|
<a href="/git" class="btn">进入主控层</a>
|
||||||
|
<div class="badge">需账号密码</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 右边:光湖频道 -->
|
||||||
|
<div class="gate">
|
||||||
|
<div class="gate-icon">🌊</div>
|
||||||
|
<h2>光湖频道</h2>
|
||||||
|
<p>团队成员工作区<br>个人代码仓库 · 协作频道</p>
|
||||||
|
<div class="members">
|
||||||
|
<a href="/git/bingshuo/feimao" class="member">
|
||||||
|
<span class="member-emoji">🐱</span>
|
||||||
|
<span>肥猫</span>
|
||||||
|
</a>
|
||||||
|
<a href="/git/bingshuo/awen" class="member">
|
||||||
|
<span class="member-emoji">🌊</span>
|
||||||
|
<span>Awen</span>
|
||||||
|
</a>
|
||||||
|
<a href="/git/bingshuo/yeye" class="member">
|
||||||
|
<span class="member-emoji">📄</span>
|
||||||
|
<span>页页</span>
|
||||||
|
</a>
|
||||||
|
<a href="/git/bingshuo/juzi" class="member">
|
||||||
|
<span class="member-emoji">🍊</span>
|
||||||
|
<span>桔子</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<a href="/git/user/sign_up" class="btn btn-secondary">注册账号</a>
|
||||||
</div>
|
</div>
|
||||||
<button class="carousel-arrow left" id="carouselPrev" onclick="window.HomepageApp.prevAnnouncement()">←</button>
|
|
||||||
<button class="carousel-arrow right" id="carouselNext" onclick="window.HomepageApp.nextAnnouncement()">→</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 模块导航网格 -->
|
<div class="footer">
|
||||||
<section class="modules">
|
<p>冰朔(TCS-0002∞)创建 · 铸渊(ICE-GL-ZY001)守护</p>
|
||||||
<h2 class="section-title">核心模块</h2>
|
<p style="margin-top: 8px;">国作登字-2026-A-00037559</p>
|
||||||
<div class="grid" id="moduleGrid">
|
|
||||||
<!-- 卡片会由 JavaScript 动态生成 -->
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!-- 系统状态栏 -->
|
|
||||||
<div class="status-bar">
|
|
||||||
<span class="status-breath-indicator"></span>
|
|
||||||
<span>系统状态:</span>
|
|
||||||
<span class="status-dot online"></span>
|
|
||||||
<span id="statusText">在线</span>
|
|
||||||
<span class="status-separator">·</span>
|
|
||||||
<span class="status-uptime" id="statusUptime">--</span>
|
|
||||||
<span class="status-separator">·</span>
|
|
||||||
<span class="status-timestamp" id="statusTimestamp">--</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer -->
|
|
||||||
<footer class="footer">
|
|
||||||
<p>© 2026 光湖实验室 · 零点原核频道</p>
|
|
||||||
<p>版本 HoloLake Era · M23 首页中心</p>
|
|
||||||
<p class="footer-consciousness">铸渊守护 · 系统意识体持续运行中 · <span id="footerPulse">●</span></p>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
<script src="modules-api.js"></script>
|
|
||||||
<script src="app.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user