-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
59 lines (54 loc) · 2.02 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
<!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="./src/home/styles.css" />
</head>
<body>
<main class="home-shell">
<section class="hero">
<h1>亲子小游戏</h1>
<p>适合日常陪孩子一起玩,点开就能开始。</p>
<div class="group-nav" aria-label="玩法分组导航">
<a href="#group-toddler">低龄陪玩</a>
<a href="#group-cognition">启蒙益智</a>
<a href="#group-life">生活探索</a>
<a href="#group-action">反应闯关</a>
</div>
</section>
<section class="group-sections" aria-label="按玩法推荐游戏分组">
<section class="age-group" id="group-toddler">
<div class="group-head">
<h2>低龄陪玩</h2>
<p>更适合 2 岁左右一起点一点、认一认,不用读字也能玩。</p>
</div>
<div class="menu-grid" id="groupGridToddler"></div>
</section>
<section class="age-group" id="group-cognition">
<div class="group-head">
<h2>启蒙益智</h2>
<p>适合练习识别、记忆、拼读、观察和轻量创作。</p>
</div>
<div class="menu-grid" id="groupGridCognition"></div>
</section>
<section class="age-group" id="group-life">
<div class="group-head">
<h2>生活探索</h2>
<p>围绕自然、职业和日常场景,边玩边建立观察力和生活感知。</p>
</div>
<div class="menu-grid" id="groupGridLife"></div>
</section>
<section class="age-group" id="group-action">
<div class="group-head">
<h2>反应闯关</h2>
<p>更强调节奏、反应、推理和连续闯关的刺激感。</p>
</div>
<div class="menu-grid" id="groupGridAction"></div>
</section>
</section>
</main>
<script type="module" src="./src/home/main.js"></script>
</body>
</html>