-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbegin.html
54 lines (53 loc) · 1.89 KB
/
begin.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>begin</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="timeline-container">
<h2>故事的开始... ...</h2>
<div class="timeline">
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/begin/1.jpg" alt="Memory 2">
<p>遇见之前</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/begin/2.jpg" alt="Memory 2">
<p>缘起高中</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/begin/4.jpg" alt="Memory 2">
<p>小邹搞得班级聚会,得到了小柴的大力支持</p>
</div>
</div>
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/begin/5.jpg" alt="Memory 2">
<p>when love happens</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/begin/6.jpg" alt="Memory 2">
<p>君本潇洒美少年,举觞白眼望青天,皎如玉树临风前</p>
</div>
</div>
<!-- 更多图片 -->
</div>
</div>
<button id="continueButton" class="btn">Continue</button>
<script>
document.getElementById('continueButton').addEventListener('click', function() {
window.location.href = '2021.html';
});
</script>
</body>
</html>