-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (71 loc) · 2.84 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
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<title>FreeDayO - FDO NetWork</title>
<link rel="stylesheet" type="text/css" href="css/fdo.css">
</head>
<body>
<div id="app">
<div class="tit">FreeDayO 官网</div>
<br>
<br>
<tita>FDO开发组</tita><br>
<titb>致力于开发MC资源的开发者团队</titb>
<br>
<info>从因热爱</info>
<info>致于开发</info>
<br>
<titb>我们是谁</titb>
<br>
<info><em onclick="reload();">FreeDayO</em> 是一个致力于Minecraft相关开发的开发组</info>
<info><em class="lb pointer" onclick="window.location.href='./page/project/make.html';">点我查看项目</em></info>
<info>作为全新的开发团队</info>
<info>我们将以全新的姿态与优质的作品得到大家的支持与认可</info>
<br>
<titb>成员列表</titb>
<br>
<div id="person">
</div>
<!--<br>
<titb>QQ群</titb>-->
<br>
<info><em class="lb" onclick="window.location.href='https://qm.qq.com/q/i396A4OR6E'">聊天群 822693016</em></info>
<!-- <info><em class="lb">点我面试</em></info>-->
<br>
<titb>新闻</titb>
<br>
<div id="new">
</div>
<br>
<titb>接下来去?</titb>
<br>
<info><em class="lb pointer" onclick="window.location.href='https://github.com/BuTian103/FreeDayO-NetWork';">Github</em></info>
<!-- <info><em class="lb pointer" onclick="window.location.href='login.html';">登录</em></info>-->
<info><em class="pointer" style="color: lightblue;" onclick="window.location.href='https://love-kogasa.github.io/FJST';">工具箱</em></info>
<info><em class="pointer" style="color: lightblue;" onclick="window.location.href='https://fds.moe';">FDS --- 友情链接</em></info>
<info><em class="pointer" style="color: lightblue;" onclick="window.location.href='https://mcisee.top';">MCiSEE --- 友情链接</em></info>
<br>
</div>
<script type="text/javascript" src="js/jquery-3.5.1.min.js"></script>
<script>
$(document).ready( function(){
// 新闻
$.get("https://cdn.jsdelivr.net/gh/XiaozhiSans/fdo-studios/configs/news.txt", function(data) {
let lines = data.split('\n')
lines.forEach(element => {
$("#new").append(`<info><em>${element}</em></info>`)
})
})
// 成员列表
$.get("https://cdn.jsdelivr.net/gh/XiaozhiSans/fdo-studios/configs/members.json", function(data) {
for (let key in data) {
$('#person').append(`
<info><em class="pointer" onclick="window.location.href='https://xiaozhisans.blogu.tc/fdo-studios/members/${data[key].name}';">${data[key].name}</em></info>
`)
}
})
})
</script>
</body>
</html>