-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
152 lines (137 loc) · 5.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>BlocklyNukkit - 高效的MCBE创意开发框架</title>
<meta name="keywords" content="BlocklyNukkit,BN,BNWIKI,Nukkit,Minecraft,Nukkit插件开发,MCBE,MCBE开发框架">
<meta name="description" content="BlocklyNukkit上手简单,使用快捷而高效,是你入门上手Nukkit插件开发的好伙伴,同时我们欢迎您加入我们的开发社区,为我们的开发贡献一份力量">
<script src="./js/three.min.js"></script>
<style>
body {
background-color: #000000;
margin: 0px;
overflow: hidden;
background-image: radial-gradient(ellipse farthest-corner at center top, #23233f 0%, #000000 80%);
}
.btn {
background-color: rgba(0, 0, 0, 0);
width: 180px;
height: 48px;
border-radius: 30px;
border-style: solid;
border-color: #FFF;
display: block;
border-width: 2px;
font-weight: 300;
text-align: center;
font-size: 24px;
color: #FFF;
margin-top: 24px;
box-shadow: 0px 0px 10px 2px #fff;
cursor: pointer;
}
@keyframes logo-ani {
100% {
box-shadow: 0px 0px 30px 5px #fff;
}
}
@keyframes btn-ani-yellow {
100% {
box-shadow: 0px 0px 16px 5px rgb(254, 233, 64);
border-color: rgb(254, 233, 64);
}
}
@keyframes btn-ani-red {
100% {
box-shadow: 0px 0px 16px 5px rgb(229, 24, 88);
border-color: rgb(229, 24, 88);
}
}
@keyframes btn-ani-blue {
100% {
box-shadow: 0px 0px 16px 5px rgb(20, 188, 255);
border-color: rgb(20, 188, 255);
}
}
@keyframes btn-ani-green {
100% {
box-shadow: 0px 0px 16px 5px rgb(97, 203, 5);
border-color: rgb(97, 203, 5);
}
}
.btn-yellow:hover {
animation: btn-ani-yellow 1s;
animation-fill-mode: forwards;
}
.btn-red:hover {
animation: btn-ani-red 1s;
animation-fill-mode: forwards;
}
.btn-blue:hover {
animation: btn-ani-blue 1s;
animation-fill-mode: forwards;
}
.btn-green:hover {
animation: btn-ani-green 1s;
animation-fill-mode: forwards;
}
</style>
</head>
<body>
<img src="./img/BlocklyNukkitLogo_flat.svg" style="
position: absolute;
z-index: -1;
left: calc(50vw - 54px);
top: calc(10vh - 50px);
width: 100px;
height: 100px;
">
<div style="
box-shadow: 0px 0px 25px 5px #fff;
position: absolute;
z-index: -2;
width: 98px;
height: 98px;
border-radius: 10px;
left: calc(50vw - 53px);
top: calc(10vh - 50px);
animation: logo-ani 2s infinite linear;
animation-direction: alternate;
"></div>
<div style="
font-size: 48px;
color: #FFF;
position: absolute;
transform: translate(-50%, -50%);
top: 30%;
left: 50%;
font-weight: 300;
text-align: center;
">
<span>BlocklyNukkit<span>
<div style="
position: absolute;
transform: translate(-50%, -50%);
top: calc(100% + 20px);
left: 50%;
font-weight: 300;
font-size: 18px;
width: 100%;
">高效、强大的MCBE创意开发框架</div>
</div>
<div style="
position: absolute;
transform: translate(-50%, -50%);
top: 60%;
left: 50%;
">
<button class="btn btn-green" onclick="window.open('https://tools.blocklynukkit.com')">Editor</button>
<button class="btn btn-yellow" onclick="window.open('wiki.html')">WIKI</button>
<button class="btn btn-blue" onclick="window.open('bnpm.html')">BNPM</button>
<button class="btn btn-red" onclick="window.open('https://github.com/Superice666/BlocklyNukkit')">Github</button>
</div>
<script src="./js/starField.js"></script>
<script src="./js/You%20Found%20it.js"></script>
</body>
</html>