-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
426 lines (394 loc) · 13.7 KB
/
index.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enashpinal's website</title>
<link rel="stylesheet" href="styles.css">
</head>
<style>
.responsive-iframe {
width: 100%;
height: 100vh;
border: none;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.iframe-container {
position: relative;
padding-top: 56.25%;
height: 0;
overflow: hidden;
}
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 15px;
}
.loading-screen {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
background-color: #000;
position: fixed;
top: 0;
left: 0;
transition: opacity 4s ease-out;
z-index: 999999;
}
.container {
overflow: hidden;
position: relative;
}
.animated-text {
font-family: 'MOJANG ABC', sans-serif;
font-size: 5rem;
font-weight: bold;
display: flex;
flex-wrap: wrap;
position: relative;
letter-spacing: 0.05em;
color: #fff;
text-shadow:
0 0 15px rgba(255, 255, 255, 0.8),
0 0 25px rgba(255, 255, 255, 0.6);
animation: fadeInUp 3s forwards;
}
@keyframes bounceRotateScale {
0% {
opacity: 0;
transform: translateY(50px) rotate(30deg) scale(0.5);
}
40% {
opacity: 1;
transform: translateY(-20px) rotate(-10deg) scale(1.2);
}
60% {
opacity: 1;
transform: translateY(10px) rotate(5deg) scale(0.9);
}
100% {
opacity: 1;
transform: translateY(0) rotate(0) scale(1);
}
}
.animated-text span {
display: inline-block;
position: relative;
opacity: 0;
transform: translateY(50px) rotate(30deg) scale(0.5);
animation: bounceRotateScale 1s forwards;
}
</style>
<script defer src="https://vercount.one/js"></script>
<body>
<div class="loading-screen">
<div class="container">
<h1 class="animated-text">
<span>E</span>
<span>n</span>
<span>a</span>
<span>s</span>
<span>h</span>
<span>p</span>
<span>i</span>
<span>n</span>
<span>a</span>
<span>l</span>
</h1>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
const textElements = document.querySelectorAll('.animated-text span');
textElements.forEach((element, index) => {
element.style.animationDelay = `${index * 0.1}s`;
});
setTimeout(() => {
document.querySelector('.loading-screen').style.opacity = '0';
setTimeout(() => {
document.querySelector('.loading-screen').style.display = 'none';
}, 4000);
}, 3000);
});
</script>
<header>
<div class="profile-picture">
<img src="touxiang.jpg" alt="头像">
</div>
<h1>Enashpinal's website</h1>
<p style="text-shadow: 2px 2px 2px black;color: black;">The jumping blocks at my are my lifelong belief.</p>
</header>
<nav class="expanded">
<div class="title">Enashpinal_YEE</div>
<ul>
<li><a href="#about">🏆About</a></li>
<li><a href="#portfolio">📖Projects</a></li>
<li><a href="#blog">🎨Blogs</a></li>
<li><a href="#links">🔗Link Exchange</a></li>
<li><a href="#contact">🔍Other</a></li>
</ul>
</nav>
<div class="mini-nav" id="miniNav"></div>
<script>
document.querySelector('nav').addEventListener('click', (e) => {
if (e.target.tagName.toLowerCase() !== 'a') {
document.querySelector('nav').classList.add('collapsed');
document.querySelector('nav').classList.remove('expanded');
const miniNav = document.getElementById('miniNav');
miniNav.classList.add('visible');
miniNav.classList.remove('hidden');
}
});
document.getElementById('miniNav').addEventListener('click', () => {
const miniNav = document.getElementById('miniNav');
miniNav.classList.add('hidden');
miniNav.classList.remove('visible');
setTimeout(() => {
document.querySelector('nav').classList.add('expanded');
document.querySelector('nav').classList.remove('collapsed');
}, 300);
});
document.querySelector('nav').classList.add('expanded');
</script>
<main>
<section id="about">
<button class="buttont" data-text="Awesome">
<span class="actual-text"> about </span>
<span aria-hidden="true" class="hover-text"> about </span>
</button>
<div class="bcard">
<div class="tools">
<div class="circle">
<span class="red box"></span>
</div>
<div class="circle">
<span class="yellow box"></span>
</div>
<div class="circle">
<span class="green box"></span>
</div>
</div>
<div class="card__content"> <p align="center">
Hello, I am enashpinal.<br>
I am a seventh-grade middle school student.<br>
I come from Shaanxi, Xi'an.<br>
I love Minecraft and programming.<br>
My birthday is September 18, 2011.<br>
I am 13 years old this year.<br>
Welcome to my website.<br>
This website does not use templates; all the code is written by myself.<br>
This is my first website, so it might not be very good.<br>
</p>
</div>
</div>
</section>
<section id="portfolio">
<button class="buttont" data-text="Awesome">
<span class="actual-text"> project </span>
<span aria-hidden="true" class="hover-text"> project </span>
</button>
<div class="gallery">
<div class="gallery-item">
<a href="https://enashpinal.pages.dev/">
<p>ENA的网站</p>
</a>
</div>
<div class="gallery-item">
<a href="https://enasetu.pages.dev">
<p>ENA奖励站</p>
</a>
</div>
<div class="gallery-item">
<a href="https://clouddream.pages.dev">
<p>云梦谷服务器(已废弃)</p>
</a>
</div>
<!-- 更多作品 -->
</div>
</section>
<section id="blog">
<button class="buttont" data-text="Awesome">
<span class="actual-text"> blogs </span>
<span aria-hidden="true" class="hover-text"> blogs </span>
</button>
<button class="btn-donate"onclick="window.open('https://enashpinal.github.io')">
博客頁
</button>
<div class="bcard">
<div class="tools">
<div class="circle">
<span class="red box"></span>
</div>
<div class="circle">
<span class="yellow box"></span>
</div>
<div class="circle">
<span class="green box"></span>
</div>
</div>
<div class="card__content">
<div class="card__content">
<div class="iframe-container">
<iframe
id="iframeDisplay"
src="https://enashpinal.github.io/"
style="width: 100%; border: none;"
allowfullscreen>
抱歉,你的浏览器不支持嵌入頁面😅
</iframe>
</div>
</div>
</div>
</div>
</section>
<section id="links">
<button class="buttont" data-text="Awesome">
<span class="actual-text"> links </span>
<span aria-hidden="true" class="hover-text"> links </span>
</button>
<div class="links-gallery">
<div class="link-item">
<div class="link-icon"><img src="https://bbs.dfggmc.top/assets/favicon-jlifm59j.png" alt="dfgg"></div>
<div class="link-content">
<h3><a href="https://studio.dfggmc.top/">DFGG工作室</a></h3>
<p>一个网络工作室的官网</p>
</div>
<button class="btn-donate"onclick="window.open('https://studio.dfggmc.top/')">
click me
</button>
</div>
<div class="link-item">
<div class="link-icon"><img src="logo.png" alt="CloudDream"></div>
<div class="link-content">
<h3><a href="https://clouddream.pages.dev/">CloudDream官网</a></h3>
<p>我的服务器官网</p>
</div>
<button class="btn-donate"onclick="window.open('https://clouddream.pages.dev/')">
click me
</button>
</div>
<div class="link-item">
<div class="link-icon"><img src="https://dfggmc.top/img/logo/DFGG%20LOGO2.0.jpg" alt="DFGG服务器官网"></div>
<div class="link-content">
<h3><a href="https://dfggmc.top/">DFGG服务器官网</a></h3>
<p>一个插件服务器</p>
</div>
<button class="btn-donate"onclick="window.open('https://dfggmc.top/')">
click me
</button>
</div>
<div class="link-item">
<div class="link-icon"><img src="https://peg195-image.pages.dev/Cuberite-logo.png" alt="Cuberite Minecraft服务器联盟"></div>
<div class="link-content">
<h3><a href="https://cmsa.dfggmc.top/">Cuberite MC服务器联盟</a></h3>
<p>一个MC服务器交流学习组织</p>
</div>
<button class="btn-donate"onclick="window.open('https://cmsa.dfggmc.top/')">
click me
</button>
</div>
</div>
</section>
<section id="contact">
<button class="buttont" data-text="Awesome">
<span class="actual-text"> Other </span>
<span aria-hidden="true" class="hover-text"> other </span>
</button>
<div class="parent">
<div class="carde" style="margin-right: 20px;">
<div class="content-box">
<span class="carde-title">Contact me</span>
<p class="carde-content" style="font-size: 90%;">
E-mail:409894128@qq.com<br>
QQ:409894128<br>
Minecraft ID:Enashpinal_YEE<br>
bilibili:ENA_QWQ
</p>
<span class="see-more" onclick="window.open('https://github.com/Enashpinal')" style="font-size: 90%;">GitHub</span>
</div>
<div class="date-box">
<span class="month" style="font-size: 90%;">Jul</span>
<span class="date" style="font-size: 100%;">21</span>
</div>
</div>
</div>
<p style="font-size: 130%;font-family: '你是我的可爱宝贝', sans-serif;">
您是本站第<span id="busuanzi_value_site_uv"></span>位访客!别问我为啥这个网页这么垃圾,因为这是我自己写的😅
</p>
<table>
<tr>
<td>
<button class="cssbuttons-io-button" onclick="window.open('https://user.qzone.qq.com/409894128/')">
Qzone
<div class="icon">
<svg
height="24"
width="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M0 0h24v24H0z" fill="none"></path>
<path
d="M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z"
fill="currentColor"
></path>
</svg>
</div>
</button>
</td>
<td>
<button class="cssbuttons-io-button" onclick="window.open('https://github.com/Enashpinal/Enashpinal_personal_website/tree/main?tab=readme-ov-file')">
GitHub
<div class="icon">
<svg
height="24"
width="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M0 0h24v24H0z" fill="none"></path>
<path
d="M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z"
fill="currentColor"
></path>
</svg>
</div>
</button>
</td>
<td>
<button class="cssbuttons-io-button" onclick="window.open('https://space.bilibili.com/518222861?spm_id_from=333.1007.0.0')">
Bilibili
<div class="icon">
<svg
height="24"
width="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M0 0h24v24H0z" fill="none"></path>
<path
d="M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z"
fill="currentColor"
></path>
</svg>
</div>
</button>
</td>
</tr>
</table>
</section>
</main>
<footer>
<p>Copyright © 2024 Enashpinal_YEE rights reserved.</p>
</footer>
</script>
<script src="smoothScroll.js"></script>
</body>
</html>