forked from blueeggs1125-art/bluekard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
293 lines (250 loc) · 8.21 KB
/
team.html
File metadata and controls
293 lines (250 loc) · 8.21 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" sizes="16x16" href="icon/16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="icon/32x32.png">
<link rel="icon" type="image/png" sizes="48x48" href="icon/48x48.png">
<link rel="icon" type="image/png" sizes="64x64" href="icon/64x64.png">
<link rel="icon" type="image/png" sizes="128x128" href="icon/128x128.png">
<link rel="icon" type="image/png" sizes="256x256" href="icon/256x256.png">
<link rel="icon" type="image/png" sizes="512x512" href="icon/512x512.png">
<link rel="apple-touch-icon" sizes="180x180" href="icon/180x180.png">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>FUCK 1939</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
display: flex;
flex-direction: column;
height: 100vh; /* 确保页面高度占满屏幕 */
}
.container {
flex-grow: 1; /* 确保容器占用剩余空间 */
padding: 20px;
overflow: auto; /* 防止内容区域溢出 */
}
h1 {
text-align: center;
margin-bottom: 30px;
color: #333;
font-size: 28px;
}
/* 主内容区域 - 添加右侧滑入动画 */
.content {
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
margin: 0 auto;
padding: 20px;
transform: translateX(100%);
opacity: 0;
transition: transform 0.8s ease-out, opacity 0.8s ease-out;
overflow: hidden;
}
.content.animate-in {
transform: translateX(0);
opacity: 1;
}
.image-link-container {
display: flex;
flex-direction: row; /* 默认水平排列 */
align-items: center;
justify-content: center;
width: 100%;
padding: 20px;
flex-wrap: wrap; /* 允许元素换行 */
}
.content-image {
height: 80%;
width: auto;
max-width: 250px; /* 限制图片的最大宽度 */
border-radius: 10px;
filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.8));
object-fit: contain;
margin-right: 20px; /* 图片和文字之间的间距 */
margin-bottom: 15px; /* 图片底部间距 */
}
.text-content {
display: flex;
flex-direction: column;
justify-content: center;
text-align: left; /* 文字左对齐 */
width: 100%;
max-width: calc(100% - 270px); /* 为图片留出空间 */
}
.content-link {
color: #1e90ff;
text-decoration: none;
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
word-wrap: break-word; /* 允许长单词换行 */
}
.content-link:hover {
text-decoration: underline;
}
.bold-text {
font-size: 24px;
font-weight: bold;
margin: 10px 0;
word-wrap: break-word; /* 允许长单词换行 */
}
.normal-text {
font-size: 16px;
font-weight: normal;
color: #555;
word-wrap: break-word; /* 允许长单词换行 */
}
/* 手机适配 */
@media (max-width: 768px) {
body {
padding-bottom: 50px;
}
.container {
padding: 15px;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
.image-link-container {
flex-direction: column;
padding: 15px;
}
.content-image {
height: 60%;
max-width: 200px;
margin-right: 0;
margin-bottom: 15px;
}
.text-content {
max-width: 100%;
text-align: center;
}
.content-link {
font-size: 28px;
}
.bold-text {
font-size: 22px;
}
.normal-text {
font-size: 14px;
}
}
@media (max-width: 480px) {
.container {
padding: 10px;
}
h1 {
font-size: 20px;
}
.content {
padding: 15px;
}
.image-link-container {
flex-direction: column;
padding: 10px;
text-align: center;
}
.content-image {
height: 40%;
max-width: 150px;
margin-right: 0;
margin-bottom: 15px;
}
.text-content {
text-align: center;
max-width: 100%;
}
.content-link {
font-size: 24px;
}
.bold-text {
font-size: 20px;
}
.normal-text {
font-size: 14px;
}
}
/* 超窄屏幕适配 */
@media (max-width: 320px) {
.content-link {
font-size: 20px;
}
.bold-text {
font-size: 18px;
}
.normal-text {
font-size: 12px;
}
.content-image {
max-width: 120px;
}
}
/* 底部导航栏 */
.bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
border-top: 1px solid #ddd;
display: flex;
justify-content: space-around;
padding: 10px 0;
z-index: 1000;
font-size: 14px;
}
.bottom-nav a {
text-decoration: none;
color: #1e90ff;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="image-link-container">
<img src="pwp.png" alt="marisa" class="content-image">
<div class="text-content">
<!-- blueeggs - 粗体很大 -->
<a href="https://space.bilibili.com/596035099" target="_blank" class="content-link">blueeggs</a>
<p class="bold-text">如果没有你想要的素材可以来私信我</p>
<p class="normal-text">ps:我能找到的情况下</p>
<p class="normal-text">最后提交时间:2025.10.03 20.39</p>
</div>
</div>
</div>
</div>
<!-- 底部导航栏 -->
<div class="bottom-nav">
<a href="index.html">卡图</a>
<a href="image2.html">其他素材</a>
<a href="suck.html">音效库</a>
<a href="zaza.html">加载动画</a>
<a href="team.html">关于</a>
</div>
<script>
// 页面加载后执行右侧滑入动画
document.addEventListener('DOMContentLoaded', function () {
const content = document.querySelector('.content');
// 延迟一点时间再开始动画,让用户注意到动画效果
setTimeout(function () {
content.classList.add('animate-in');
}, 300);
});
</script>
</body>
</html>