-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 2.48 KB
/
Copy pathindex.html
File metadata and controls
67 lines (61 loc) · 2.48 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>她光芒 · 妇女节限定</title>
<meta name="description" content="妇女节限定互动网页,致敬每一位闪闪发光的她。" />
<meta name="theme-color" content="#ff4f9a" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="petals" id="petals"></div>
<header class="hero">
<div class="hero__badge">3·8 限定</div>
<h1>致每一位了不起的她</h1>
<p>
愿你自由如风、温柔且有锋芒。这个页面,献给每一位在生活和梦想里都全力发光的女性。
</p>
<div class="hero__actions">
<button id="blessBtn">点亮祝福</button>
<button id="musicBtn" class="ghost">播放节日氛围音</button>
<button id="posterBtn" class="ghost">生成祝福海报</button>
</div>
</header>
<main class="container">
<section class="card countdown">
<h2>妇女节倒计时</h2>
<div class="count-grid">
<div><span id="days">0</span><em>天</em></div>
<div><span id="hours">0</span><em>时</em></div>
<div><span id="minutes">0</span><em>分</em></div>
<div><span id="seconds">0</span><em>秒</em></div>
</div>
<small id="todayTip"></small>
</section>
<section class="card wall">
<h2>祝福留言墙</h2>
<div class="quick-wishes" id="quickWishes"></div>
<form id="wishForm">
<input id="name" maxlength="20" placeholder="你的名字(可选)" />
<textarea id="wish" maxlength="120" required placeholder="写下你的节日祝福..."></textarea>
<button type="submit">发布祝福</button>
</form>
<ul id="wishList"></ul>
</section>
<section class="card quote">
<h2>今日她力量</h2>
<blockquote id="quoteText">“她不需要成为谁,她就是她自己,已经足够闪耀。”</blockquote>
<div class="row">
<button id="nextQuote" class="ghost">换一句</button>
<button id="likeBtn" class="ghost">❤️ 点赞 <span id="likeCount">0</span></button>
</div>
</section>
</main>
<footer>
<p>Happy Women's Day · 2026</p>
</footer>
<canvas id="posterCanvas" width="1080" height="1920" hidden></canvas>
<script src="./script.js"></script>
</body>
</html>