-
Notifications
You must be signed in to change notification settings - Fork 0
/
moments.html
164 lines (152 loc) · 3.94 KB
/
moments.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html>
<head>
<title>诸璟祺|动态</title>
<link rel="stylesheet" href="https://zhujingqi.com/bar.css">
<link rel="stylesheet" href="https://zhujingqi.com/main.css">
<style>
@keyframes slidefromleft {
from {
left: -200px;
opacity: 0;
}
to {
left: 0;
opacity: 1;
}
}
@keyframes slidefromright {
from {
transform: translateX(50%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slidefrombottom {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.dongtai {
position: absolute;
animation: slidefromleft 1s ease-in-out;
top: 150px;
margin: 40px;
padding: 30px;
width: 500px;
height: 200px;
background-color: rgba(60, 182, 79, 0.5);
border-radius: 20px;
transition: background-color 0.5s ease;
}
.dongtai:hover {
background-color: rgba(60, 182, 79, 0.3);
border-radius: 20px;
transition: background-color 0.5s ease;
}
.go {
position: absolute;
animation: slidefromright 1s ease-in-out;
top: 150px;
left: 600px;
margin: 40px;
padding: 30px;
width: 500px;
height: 200px;
background-color: rgba(76, 205, 211, 0.5);
background-size: cover;
border-radius: 20px;
transition: background-color 0.5s ease;
font-size: 20px;
}
.go:hover {
background-color: rgba(76, 205, 211, 0.3);
transition: background-color 0.5s ease;
}
.arrow {
position: absolute;
top: 200px;
left: 1200px;
width: 0;
height: 0;
border-style: solid;
border-width: 120px 0 120px 50px;
border-color: transparent transparent transparent rgba(76, 205, 211, 0.5);
}
.news {
position: absolute;
animation: slidefrombottom 1s ease-in-out;
top: 450px;
margin: 40px;
padding: 30px;
width: 90%;
height: 200px;
background-color: rgba(255, 255, 0, 0.3);
background-size: cover;
border-radius: 20px;
transition: background-color 0.5s ease;
font-size: 20px;
}
.news:hover {
background-color: rgba(255, 255, 0, 0.4);
transition: background-color 0.5s ease;
}
</style>
</head>
<body>
<div class="bar">
<a href="https://zhujingqi.com/" style="background-color:#ffe93e"><b>诸璟祺</b></a>
<a href="https://zhujingqi.com/a/">文章</a>
<a href="me.html">介绍</a>
<a href="email.html">联系</a>
<a href="https://note.ms/zhujingqicom">留言</a>
<a href="moments.html">动态</a>
<a href="activity.html">活动</a>
<a href="game.html">游戏</a>
<a href="chatcat.html">聊天猫</a>
<a href="bluedeath.html">蓝屏</a>
<a href="html.html">HTML教程</a>
<a href="tools">工具</a>
<a href="money.html">赞助</a>
<a href="thanks.html">感谢</a>
<a href="v.html">更新</a>
</div>
<div class="dongtai">
<br>
思维的涟漪,<br><br>
  在知识的海洋中泛起诗意的波光。<br><br>
漫步文字间,<br><br>
  探寻生活的诗与远方。<br><br>
</div>
<a href="https://zhujingqi.com/a/index.html">
<div class="go">
<br>
点击此处,<br><br>
  步入文字的殿堂,共赏篇章之美。<br><br>
 (跳转到文章中心)<br><br>
</div>
</a>
<a href="./index.html">
<div class="news">
<br><br>
【新闻】我的网站更新了<br><br>
    跳转到首页以了解信息 & 继续访问!<br>
</div>
</a>
<div class="arrow"></div>
<center style="background-color:gray;position:absolute;bottom:0%;width:100%;">
<br>
编写:诸璟祺<br>
开发:GitHub<br>
🅩🅗🅤🅙🅘🅝🅖🅠🅘.🅒🅞🅜<br><br>
</center>
</body>
</html>