-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2020.html
108 lines (107 loc) · 4.01 KB
/
2020.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2020</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="timeline-container">
<h2>2020年的你啊</h2>
<div class="timeline">
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/2020/1.jpg" alt="Memory 2">
<p>北京送别你赴杭州</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/2.jpg" alt="Memory 2">
<p>凛冽的冬天, 清新的空气和温暖的你</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/4.jpg" alt="Memory 2">
<p>送你奇奇怪怪的羊毛毡</p>
</div>
</div>
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/2020/5.jpg" alt="Memory 2">
<p>送你小小柴</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/6.jpg" alt="Memory 2">
<p>第一次一起去森林公园</p>
</div>
</div>
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/2020/7.jpg" alt="Memory 1">
<p>满眼的盎然生机和帅气活泼的你, 都让我更喜欢这个城市</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/8.jpg" alt="Memory 2">
<p>一起户外</p>
</div>
</div>
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/2020/9.jpg" alt="Memory 2">
<p>一起拍照</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/10.jpg" alt="Memory 2">
<p>一起面对镜头</p>
</div>
</div>
<div class="timeline-item top">
<div class="timeline-content">
<img src="figures/2020/11.jpg" alt="Memory 2">
<p>甜甜蜜蜜</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/13.jpg" alt="Memory 2">
<p>陪你过生日,陪你纠结编制</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/14.jpg" alt="Memory 2">
<p>无敌帅气</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/16.jpg" alt="Memory 2">
<p>一起许愿</p>
</div>
</div>
<div class="timeline-item bottom">
<div class="timeline-content">
<img src="figures/2020/17.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>