58 lines
2.0 KiB
HTML
58 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
<title>Airhub</title>
|
|
<meta name="description" content="Airhub - 智能硬件连接中心">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Press+Start+2P&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="app-container">
|
|
<!-- 动态渐变背景 -->
|
|
<div class="gradient-bg">
|
|
<div class="gradient-layer layer-1"></div>
|
|
<div class="gradient-layer layer-2"></div>
|
|
<div class="gradient-layer layer-3"></div>
|
|
</div>
|
|
|
|
<!-- 首页 -->
|
|
<div class="page home-page active" id="page-home">
|
|
<!-- 顶部 Logo - 像素风格 -->
|
|
<header class="home-header">
|
|
<div class="pixel-logo" id="airhub-logo">
|
|
<span class="pixel-text">Airhub</span>
|
|
<div class="pixel-glow"></div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- 中心吉祥物 -->
|
|
<main class="home-content">
|
|
<div class="mascot-container">
|
|
<img src="home_mascot.png" alt="Airhub Spirit" class="mascot" id="mascot">
|
|
<div class="mascot-glow"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- 底部按钮 -->
|
|
<footer class="home-footer">
|
|
<button class="connect-btn" id="connect-btn" onclick="handleConnect()">
|
|
<span class="btn-text">立即连接</span>
|
|
<span class="btn-shine"></span>
|
|
</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
|
|
</html> |