-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (59 loc) · 2.49 KB
/
404.html
File metadata and controls
61 lines (59 loc) · 2.49 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>页面不见了</title>
<link rel="shortcut icon" href="./favicon.ico">
<link rel="icon" sizes="100x100" href="./favicon.ico">
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-title" content="MCBE UI 文档">
<meta name="apple-touch-icon-precomposed" size="57x57" href="./web_icon.png">
<meta name="apple-touch-icon-precomposed" size="114x114" href="./web_icon.png">
<meta name="apple-touch-icon-precomposed" size="152x152" href="./web_icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="keywords" content="我的世界UI,基岩版UI,json ui教程,JSON UI教程,json ui,JSON UI,Minecraft UI,Minecraft JSON UI,Minecraft BE JSON UI,Minecraft Bedrock Edition JSON UI">
<meta name="description" content="本文档适用于 MCBE UI 开发者,参考文档以制作您的 UI 资源。">
<meta name="author" content="MC_spruce">
<link href="./src/css/main.css" rel="stylesheet">
<style>
.error-page{
position: absolute;
top: 50%;
left: 50%;
width: 100%;
transform: translate(-50%, -50%);
display: flex;
display: -webkit-flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.error-page > *{margin-left: 8px;margin-right: 8px;}
.error-page > button{
text-decoration: none;
color: #ffffff !important;
font-size: 1.1em;
font-weight: bold;
width: 180px;
padding-left: 30px;
padding-right: 30px;
padding-top: 4px;
padding-bottom: 4px;
}
</style>
</head>
<body>
<!--正文-->
<div class="ns error-page">
<div style="font-size: xx-large;font-weight: bold;margin-bottom: 4px;">页面不存在</div>
<div style="font-size: medium;text-align: center;">可能是输入错误的Url导致的,返回首页看看有没有你想要的把~</div>
<div style="margin-top: 5px;"></div>
<button onclick="window.location.href = hostName+'/'" class="btn">返回首页</button>
</div>
<!--正文-->
<script src="./src/js/jQuery.js"></script>
<script src="./src/js/main.js"></script>
<link href="./src/css/font-awesome.css" rel="stylesheet">
</body></html>