-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
679 lines (593 loc) · 25.6 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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="typeface.css">
<link rel="manifest" href="manifest.json">
<meta charset="UTF-8">
<meta name="APX201" content="掉渣田官方网站•FSF">
<title>掉渣田官方网站•FSF</title>
<style>
/* 之前的矩形样式 */
.custom-rectangle {
width: 910px;
height: 450px;
background-color: #C6C6C6;
border-top: 5px solid #707070;
border-left: 5px solid #707070;
border-right: 5px solid white;
border-bottom: 5px solid white;
position: relative;
overflow: hidden;
margin:auto;
/*居中div*/
}
/* 图片轮播样式 */
.carousel {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: transform 1s ease;
}
.carousel img {
width: 100%;
height: 100%;
object-fit: cover;
}
a {
text-decoration: none;
}
.blue-rectangle {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80px;
background-color: #E7E8EC;
z-index: -1;
}
.gray-rectangle {
position: absolute;
top: 80px; /* 在灰色矩形下方 */
left: 0;
width: 100%;
height: 3px;
background-color: E7E8EC;
z-index: -2;
/* 确保它在灰色矩形下方 */
}
.black-rectangle {
position: absolute;
top: 80px; /* 在浅灰矩形下方 */
left: 0;
width: 100%;
height: 15px;
background-color: #919091;
z-index: -3;
/* 确保它在浅灰矩形下方 */
}
.blue2-rectangle {
position: absolute;
top: 5417;
left: 0;
width: 100%;
height: 80px;
background-color: #48494B;
z-index: -1;
}
.gray2-rectangle {
position: absolute;
top: 5414; /* 在灰色矩形下方 */
left: 0;
width: 100%;
height: 3px;
background-color: gray;
z-index: -2;
/* 确保它在灰色矩形下方 */
}
.black2-rectangle {
position: absolute;
top: 5402; /* 在浅灰矩形下方 */
left: 0;
width: 100%;
height: 15px;
background-color: #313234;
z-index: -3;
/* 确保它在浅灰矩形下方 */
}
</style>
<style type="text/css">
@font-face {
font-family:'MinecraftTen-VGORe';
src: url(MinecraftTen-VGORe.ttf);
}
.Minecraft字体{
font-family: 'MinecraftTen-VGORe';
font-size: 50px;
text-shadow: none;
}
@font-face {
font-family:'Minecraft字体';
src: url(Minecraft字体.ttf);
}
.MinecraftTen-VGORe{
font-family: 'Minecraft字体';
font-size: 50px;
text-shadow: none;
}
</style>
</head>
<body>
<div class="background-image"></div>
<div class="overlay"></div>
<div class="content"></div>
<table>
<tr>
<td>
<a href="https://apx201.github.io/fsf" target="_blank" ><img src="dztlogo.png" width="60" height="60" class="no-change"></a>
</td>
<td>
<p style="font-size:50px;font-family:Minecraft字体;color:white">掉渣田•FSF</p>
</td>
</tr>
</table>
<div class="blue-rectangle"></div>
<div class="gray-rectangle"></div>
<div class="black-rectangle"></div>
<div style="height: 80px;"></div>
<div class="custom-rectangle">
<div class="carousel" id="carousel">
</div>
</div>
<script>
let images = [];
let currentImageIndex = 0;
const carousel = document.getElementById('carousel');
// 动态添加图片到轮播容器
function addImage(imageUrl) {
const imgElement = document.createElement('img');
imgElement.src = imageUrl;
images.push(imgElement);
carousel.appendChild(imgElement);
updateCarousel();
}
// 初始化轮播
function initializeCarousel() {
addImage('images/Slim.jpg'); // 图片1
addImage('images/Screenshot 2.jpg'); // 图片2
addImage('images/ARMT logo.png'); // 图片3
}
// 更新轮播
function updateCarousel() {
carousel.style.transform = `translateX(-${currentImageIndex * 100}%)`;
currentImageIndex = (currentImageIndex + 1) % images.length;
}
// 自动轮播时间
setInterval(updateCarousel, 4000);
initializeCarousel();
</script>
<div style="height: 5px;"></div>
<!-- sidebar侧滑栏 -->
<button id="menu-button" class="button-style">≡</button>
<!-- 侧滑栏内容 -->
<div id="sidebar" class="sidebar-style">
<p style="font-family:Minecraft字体;font-size:40px"> 掉渣田FSF</p>
<a href="https://github.com/2022001111/2022001111.github.io">
<p style="font-family:Minecraft字体;font-size:30px"> 项目地址</p></a>
<a href="https://apx201.github.io/fsf/jumps/APP.html"><p style="font-family:Minecraft字体;font-size:30px"> 应用获取</p></a>
<a href="https://www.123pan.com/s/Agx4jv-qDZzv.html"><p style="font-family:Minecraft字体;font-size:30px"> 键位获取</p></a>
<a href="mailto:[email protected]"><p style="font-family:Minecraft字体;font-size:30px"> 邮箱反馈</p></a> 
<img class="image-container2" src="images/xiaofei.png" alt="消费">
</div>
<!--悬浮按钮-->
<button id="top-button" class="button-style">⬆</button>
<script>
document.getElementById('top-button').onclick = function() {
window.scrollTo({
top: 0,
behavior: 'smooth' // 'smooth' 表示平滑滚动
});
};</script>
<a href="link-html/update-log/index.html"><button id="mbe-button" class="button-style">M</button></a>
<script>
document.addEventListener('DOMContentLoaded', function() {
var menuButton = document.getElementById('menu-button');
var sidebar = document.getElementById('sidebar');
var mask = document.createElement('div');
// 设置遮罩样式
mask.style.cssText = 'position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1000; display: none;';
menuButton.addEventListener('click', function() {
sidebar.style.left = sidebar.style.left === '0px' ? '-260px' : '0px';
if (sidebar.style.left === '0px') {
document.body.appendChild(mask); // 显示遮罩
mask.style.display = 'block';
} else {
document.body.removeChild(mask); // 隐藏遮罩
}
});
// 点击侧滑栏以外的区域也可以关闭侧滑栏和遮罩
document.addEventListener('click', function(event) {
if (!sidebar.contains(event.target) && event.target !== menuButton) {
sidebar.style.left = '-260px';
document.body.removeChild(mask);
}
});
});
</script>
<!-- 消息弹窗 -->
<!--
<div class="custom-modal-background">
<div class="top-border">
<span class="close">x</span>
</div>
<div class="middle">
<div class="img-container">
<img class="window-img" src="images/year.jpg" style="width:40%; height:auto;">
</div>
<p style="font-family:Minecraft字体;font-size:30px">今天是仿基岩版控制器一周年!</p>
</div>
<div class="bottom-border"></div>
</div>
<script>
// 获取模态窗口
var modal = document.querySelector('.custom-modal-background');
// 模拟显示窗口
modal.style.display = "block";
// 获取关闭按钮
var span = document.getElementsByClassName("close")[0];
var confirmButton = document.getElementsByClassName("bottom-style2")[0];
// 当用户点击关闭按钮或确认按钮时,关闭模态窗口
span.onclick = function() {
modal.style.display = "none";
}
confirmButton.onclick = function() {
modal.style.display = "none";
}
// 当用户点击窗口外的任意位置时,关闭模态窗口
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
-->
<div style="height: 60px;"></div>
<p class="text-with-background" style="text-align: center;font-size:50px;">相关链接</p>
<!--
<table>
<tr>
<td><img src="images/dy.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">抖音主页</p></td>
<td>
<a href="https://m.douyin.com/share/user/MS4wLjABAAAAERGEJOMI4fSjHr-QcNw-_myotfnyLanXcC2HISt-ptS_MIxlJXMKDsiKf02YAp0i"id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a>
</td>
</tr>
</table>
<table>
<tr>
<td><img src="images/ks.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">快手主页</p></td>
<td>
<a href="https://v.kuaishou.com/P1phIF" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a>
</td>
</tr>
</table>
-->
<table border="0">
<tr>
<td><img src="images/bililogo.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">哔哩哔哩主页</p></td>
<td><a href="https://space.bilibili.com/1441611827" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/wb.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">微博主页</p></td>
<td><a href="https://weibo.com/u/7879006938" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/youtobe.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">Youtobe主页</p></td>
<td><a href="https://www.youtube.com/@Apeng-22001" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/mgggw.jpg" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">妙狗国国王官网</p></td>
<td><a href="https://xluofox.us.kg" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/YOUMING.png" alt=" " width="30" height="7"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">YOUMING官网</p></td>
<td><a href="https://youming.072211.xyz/" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a>
</td>
</tr>
<tr>
<td></td>
<td><p style="font-family:Minecraft字体;font-size:30px">WSD官网</p></td>
<td><a href="https://wsd.072211.xyz/" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="dztlogo.png" alt="" width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">掉渣田社区Wiki</p></td>
<td><a href="https://fsfcomm.fandom.com/zh/wiki/Falling_Slag_Field_community(FSF)_Wiki" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/mctbw.png" alt="" width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">Minecraft技术性方块Wiki</p></td>
<td><a href="https://minecraft-technicalblocks.fandom.com/zh/wiki/Minecraft_TechnicalBlocks_Wiki" id="myLink"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
</table>
<p class="text-with-background" style="text-align: center;font-size:50px">加入社区</p>
<table border="0">
<tr>
<td><img src="images/yh.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">云湖社区(已废弃)</p></td>
<td><a href="https://www.yhchat.com/group/homepage/485371270?userId=4298982"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/QQ.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">QQ频道</p></td>
<td><a href="https://pd.qq.com/s/7g7aomjpv"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/QQ.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">QQ群聊(CN区)</p></td>
<td><a href="http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=GXe85-BhRA_-xJgzTdQz4Gbs6Jj1bh_j&authKey=56yqe6M4%2FhnAdewv38rp%2BfMHtiL21cUidNeETdDMHhK08AdZq1i61aRUWF6Oa8Ga&noverify=0&group_code=375308994"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><img src="images/discord.png" alt=" " width="30" height="30"></td>
<td><p style="font-family:Minecraft字体;font-size:30px">Discord</p></td>
<td><a href="https://discord.gg/kdjMnZry"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
</table>
<p style="font-size:30px">相关团队</p>
<table>
<tr>
<td><img src="images/traffic-logo.png" alt=" " width="30" height="30"></td>
<td><a href="http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=iMysqIWAS0dKMNrQq_UnftSl9QPNQ_Gx&authKey=B2uRTZ2MrCpgS7nMXwjcq5LmaMqMx4EJTyzVnTSJiG3AfOqIo2kGKWte6ngMAkwR&noverify=0&group_code=966234858"
target="_blank" title=" " style="font-family:Minecraft字体;color:white;font-size:30px;">MC Traffic 建设团队</a></td>
<td><p style="font-family:Minecraft字体;color:white;font-size:30px;">Q群966234858</p></td>
</tr>
<tr>
<td><img src="images/armt-logo.png" alt=" " width="30" height="30"></td>
<td><a href="https://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=0IRoQaVIMk1gHNV0Wl4I1mKPVKwuQ72O&authKey=UM513U%2F0cOpG%2F7riLcUuxKmqBl1r7%2BBrcNT5HS4fVR5JpYNRE3BSqbc0hXFWyCJz&noverify=0&group_code=935292850"
target="_blank" title=" " style="font-family:Minecraft字体;color:white;font-size:30px;">MC AR麦铁铁路建设团队 </a></td>
<td><p style="font-family:Minecraft字体;color:white;font-size:30px;">Q群935292850</p></td>
</tr>
</table>
<p class="text-with-background" style="text-align: center;font-size:50px;">官方内容获取</p>
<table border="0">
<tr>
<td><p style="font-family:Minecraft字体;font-size:30px">⇩ 下载官方APP</p></td>
<td><a href="https://www.123pan.com/s/Agx4jv-EXczv.html"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><p style="font-family:Minecraft字体;font-size:30px">⇩ 下载键位海报</p></td>
<td><a href="https://gitdl.cn/https://raw.githubusercontent.com/2022001111/22001picture/main/1719738754975.png"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><p style="font-family:Minecraft字体;font-size:30px">⇩ 下载仿基岩版键位(MBE)</p></td>
<td><a href="https://www.123pan.com/s/Agx4jv-qDZzv.html"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><p style="font-family:Minecraft字体;font-size:30px">⇩ 下载仿基岩修改版键位(MBE-UM)</p></td>
<td><a href="https://vip.123pan.cn/1825094531/7185147"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><p style="font-size:30px">[群规查阅]</p></td>
<td><a href="https://docs.qq.com/doc/DWU5rV3FIWWRnWm9N"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60"></a></td>
</tr>
<tr>
<td><p style="font-size:30px">[键位版本日志库]</p></td>
<td><a href="link-html/oreload/index.html"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60" ></a></td>
</tr>
<tr>
<td><p style="font-size:30px">[社区文档首页]</p></td>
<td><a href="https://docs.qq.com/doc/DWXROTkJCWE5iWnZU"><img src="images/ore-jump-to.png" alt="点击跳转" height="60" width="60" ></a></td>
</tr>
</table>
<p class="text-with-background" style="font-size:50px;font-family:Minecraft字体">宣传视频</p>
<!-- <img src="" alt="">
<video width="1280" height="720" controls>
<source src="mbeFabu.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
您的浏览器不支持 HTML5 video 标签。
</video>
<pstyle="font-family:arial;color:grey;font-size:8px;">[video]</p> -->
<iframe src="https://player.bilibili.com/player.html?bvid=BV1Vm42157H7&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="720"> </iframe>
<iframe src="https://player.bilibili.com/player.html?bvid=BV1Nmp4eKEkq&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="720"> </iframe>
<p class="text-with-background" style="font-size:50px;font-family:Minecraft字体">官方披风</p>
<p style="font-family:Minecraft字体;font-size:30px">Light披风已在Little Skin上线!</p>
<table border="0">
<tr>
<td>
<div class="image-container">
<img src="images/fsf-light.png" alt="light" ></div>
</td>
<td>
<div class="image-container">
<img src="images/fsf-dark.png" alt="dark" ></div>
</td>
<td>
<div class="image-container">
<img src="images/mbe-year.png" alt="gold" ></div>
</td>
</tr>
<tr>
<td>
<p style="font-size:30px;font-family:Minecraft字体">掉渣田Light披风  </p>
</td>
<td>
<p style="font-size:30px;font-family:Minecraft字体">掉渣田Dark披风  </p>
</td>
<td>
<p style="font-size:30px;font-family:Minecraft字体">MBE一周年披风</p>
</td>
</tr>
<tr>
<td>
<a href="https://apx201.github.io/fsf/images/FSF披风.png"><button class="button-style" >立即获取</button></a>
</td>
<td>
<a href="mailto:[email protected]"><button class="button-style" onclick="Getbutton()">邮箱获取</button></a>
</td>
<td>
<a href="mailto:[email protected]"><button class="button-style" onclick="Getbutton()">邮箱获取</button></a>
</td>
</tr>
</table>
<script>
function Getbutton() {
alert('请在【社区管理条约】中查找资源获取协议并签署\n私信邮箱:[email protected] \n \n Dark披风:\n发送“FSF披风”并附带资源获取协议签名截图发送到邮箱,审核有效即可获取(等待回复)\n【限定20份】\n\nMBE周年披风: \n 发送“MBE生日快乐!”并附带MBE任意界面使用截图即可获取(等待回复)');
}
</script>
</br></br>
<a href="##" id="toggleLink"><p style="font-size:20px;font-family:Minecraft字体">下载之前,您需要阅读并承诺一段条约 ∨</p></a>
<p id="content" style="display: none;font-family:Minecraft字体;font-size:20px">请签署
资源获取协议【🔗https://docs.qq.com/doc/DWVVUZVJNa3ZNVFlU#】
;你不能将拥有的披风文件以任何方式分享、上传到其他地方或其他人,感谢配合社区制度。
</p>
<script>
document.getElementById('toggleLink').addEventListener('click', function() {
var content = document.getElementById('content');
if (content.style.display === 'none') {
content.style.display = 'block';
} else {
content.style.display = 'none';
}
});
</script>
<p style="font-size:20px;font-family:Minecraft字体">*如无法获取请联系UP</p>
<p class="text-with-background" style="font-size:50px;font-family:Minecraft字体">官方服务器</p>
<p style="font-family:Minecraft字体;font-size:30px">
FSF服务器</br></br> 添加链接:add.aternos.org/apxfsf</br>
地址:apxfsf.aternos.me</br>
端口:27614</br>
核心:基岩版</br>
版本:1.21.20.03</br>
</p>
<a href="HTTP://add.aternos.org/apxfsf" style="color: black;">
<button
class="button-style" style="width: auto;height: auto;color: black;">在MCBE中添加此服务器
</button>
</a>
<p style="font-family:Minecraft字体;font-size:30px">
FSF活动服务器</br></br> 添加链接:add.aternos.org/FSFactivity</br>
地址:FSFactivity.aternos.me</br>
端口:16944</br>
核心:基岩版</br>
版本:1.21.20.03</br>
</p>
<a href="HTTP://add.aternos.org/FSFactivity" style="color: black;">
<button class="button-style" style="width: auto;height: auto;color: black;">在MCBE中添加此服务器</button>
</a>
<p class="text-with-background" style="font-size:50px;font-family:Minecraft字体">在线游戏!</p>
<p style="font-family:Minecraft字体">贪吃蛇 框架提供:LZY OreUi:APX201</p>
<a href="link-html/snake/snake.html" style="color: black;"><button class="button-style" style="width: auto;height: auto;color: black;">进入在线游戏</button></a>
<a href="https://apx201.github.io/fsf/link-html/phone/index.html"><p class="text-with-background" style="text-align: center;font-size:12px;">进入手机版</p></a>
<!-- /////下方内容///// -->
<br> <br>
<table>
<tr>
<td>
<a href="https://vdse.bdstatic.com//192d9a98d782d9c74c96f09db9378d93.mp4" target="_blank">
<img src="images/learn-more.png" width="70" height="70" alt="了解更多">
</a>
</td>
</tr>
</table>
<script src="main.js"></script>
<!-- 音频文件预加载 -->
<audio id="sound1" src="Audios/eat.mp3" preload="auto"></audio>
<audio id="sound2" src="Audios/Q.mp3" preload="auto"></audio>
<audio id="sound3" src="Audios/aqtw.mp3" preload="auto"></audio>
<div class="blackRectangle"></div>
<!-- 按钮,点击后播放不同的音频 -->
<button class="button-style" id="button1" onclick="playSound('sound1')">Don't click</button>
<button class="button-style" id="button2" onclick="playSound('sound2')">Don't click</button>
<button class="button-style" id="button3" onclick="playSound('sound3')">Don't click</button>
<p> </p>
<p class="text-with-background" style="text-align: center;font-size:1px;"> </p>
<script>
// JavaScript函数,用于播放音频
function playSound(soundId) {
var audio = document.createElement('audio');
audio.src = document.getElementById(soundId).src;
audio.play();
}
</script>
<a href="link-html/warning/index.html"><p style="color:red;font-size:30px"><i>[⚠️]</p></a>
<!--
<p><i>测试网页窗口</i></p>
<iframe src="https://xluofox.us.kg" width="1280" height="720" title="Example Iframe">
<p>您的浏览器不支持 iframe,但您可以通过以下链接访问目标网页:<a href="https://xluofox.us.kg">访问示例网站</a></p>
</iframe>
-->
<style>
.gray-italic-text {
color: gray;
/* 设置文本颜色为灰色 */
font-style: italic;
/* 设置文本为斜体 */
}
</style>
<p class="gray-italic-text"> <br> <br> <br>-联系我们-
<br>QQ:2142258771
<br>邮箱:[email protected]
<br>哔哩哔哩:不想取名的阿peng
<br>特别鸣谢:WSD_KW
<br><br>Falling slag Field
<br>AR • 掉渣田-2023/11/14创立
<br>电脑版视图
</p>
<!--
<div style="height: 80px;"></div>
<div class="blue2-rectangle"></div>
<div class="gray2-rectangle"></div>
<div class="black2-rectangle"></div>
-->
<!--
<iframe src="https://player.bilibili.com/player.html?bvid=BV1QE421c7a4&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="200" height="200"> </iframe>
-->
<div style="height: 5px;"></div>
<!--
<script>
document.addEventListener('DOMContentLoaded', function() {
const characters = ['🟩', 'BE', '⬜️', '⬛️', 'M'];
const numChars = 50; // 可以根据需要调整字符数量
for (let i = 0; i < numChars; i++) {
const charDiv = document.createElement('div');
charDiv.className = 'falling-character';
charDiv.textContent = characters[Math.floor(Math.random() * characters.length)];
// 随机水平位置
charDiv.style.left = `${Math.random() * 90}%`;
// 随机垂直初始位置,稍微从顶部开始,增加分散感
charDiv.style.top = `${Math.random() * -2}vh`; // 这里让字符从最顶部的0%到20%间开始
charDiv.style.animationDelay = `${Math.random() * 6}s`; // 随机动画延迟
document.body.appendChild(charDiv);
}
});
</script>
-->
<script>
function redirectBasedOnDevice() {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
if (confirm("是否跳转手机版?")) {
window.location.href = 'link-html/phone/index.html';
}
}
}
redirectBasedOnDevice();
</script>
<!--<script>
function redirectBasedOnDevice() {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
window.location.href = 'link-html/phone/index.html';
}
}
redirectBasedOnDevice();
</script>
-->
</body>
</html>