-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (107 loc) · 5.03 KB
/
index.html
File metadata and controls
114 lines (107 loc) · 5.03 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>一哈基三米 - 游戏介绍</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="hero">
<div class="hero-content">
<h1>一哈基三米</h1>
<p>一个结合了三消与塔防元素的 Pygame 游戏</p>
<div class="cta-buttons">
<a href="https://wwqg.lanzoub.com/b00q0q4bkj" class="btn btn-primary" target="_blank">下载游戏 (密码: 5e1o)</a>
<a href="https://github.com/catmcbe/py-hajimipvz" class="btn btn-secondary" target="_blank">查看源码</a>
</div>
</div>
</header>
<main>
<section id="features" class="container">
<h2>核心功能</h2>
<div class="feature-grid">
<div class="feature-card">
<h3>三消与塔防结合</h3>
<p>通过在左侧区域进行三消来发射炮弹,攻击右侧来袭的僵尸。</p>
</div>
<div class="feature-card">
<h3>多账号系统</h3>
<p>创建或选择已有账号来保存您的进度,并可在主菜单随时切换。</p>
</div>
<div class="feature-card">
<h3>双模式游戏</h3>
<p>包含精心设计的“冒险模式”和通关后解锁的“无尽模式”。</p>
</div>
<div class="feature-card">
<h3>无尽模式复活</h3>
<p>生命耗尽后可复活一次,获得额外生命继续挑战。</p>
</div>
<div class="feature-card">
<h3>沉浸式背景音乐</h3>
<p>游戏全程配有背景音乐,提升游戏氛围。</p>
</div>
<div class="feature-card">
<h3>便捷的操作</h3>
<p>在游戏进行中可以随时返回主菜单,或在主菜单退出游戏。</p>
</div>
</div>
</section>
<section id="elements" class="container">
<h2>三消元素</h2>
<div class="elements-grid">
<div class="element-card">
<img src="三消元素/1.png" alt="三消元素 1">
</div>
<div class="element-card">
<img src="三消元素/2.png" alt="三消元素 2">
</div>
<div class="element-card">
<img src="三消元素/3.png" alt="三消元素 3">
</div>
</div>
</section>
<section id="how-to-play" class="container">
<h2>游戏玩法</h2>
<div class="how-to-play-content">
<ol class="timeline">
<li>
<h4>账号管理</h4>
<p>启动游戏后,首先进入账号选择或创建界面。</p>
</li>
<li>
<h4>主菜单</h4>
<p>选择账号后,进入主菜单,选择游戏模式、切换账号或退出。</p>
</li>
<li>
<h4>游戏界面</h4>
<p>左侧三消,右侧抵御僵尸。在僵尸到达左侧前消灭它们。</p>
</li>
<li>
<h4>解锁与挑战</h4>
<p>完成所有冒险关卡以解锁无尽模式,挑战您的极限!</p>
</li>
</ol>
<div class="game-image">
<img src="游戏僵尸图片.png" alt="游戏玩法截图">
</div>
</div>
</section>
<section id="source" class="container">
<h2>项目来源与说明</h2>
<div class="source-content">
<p>本项目基于网络上的公开教程进行了大幅修改和功能扩展,主要基于开源项目 <a href="https://github.com/371854496/pygame/" target="_blank">pygame</a> 进行修改。</p>
<p>背景音乐来自哔哩哔哩的 <strong>@泉之所达者</strong>,zombie素材选自 <strong>赛马娘</strong>。</p>
<p class="notice">本项目仅供学习交流使用,请勿用于商业用途。如遇问题,请尝试自行搜索解决。</p>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>© 2024 一哈基三米. All Rights Reserved.</p>
<p>开源地址: <a href="https://github.com/catmcbe/py-hajimipvz" target="_blank">https://github.com/catmcbe/py-hajimipvz</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>