-
Notifications
You must be signed in to change notification settings - Fork 0
/
Restart.html
39 lines (35 loc) · 861 Bytes
/
Restart.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/Shutdown.css">
<title>tysystem</title>
<style>
body {
background: black;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.main>p{
font-size: 15pt;
color:white;
}
</style>
<meta http-equiv="refresh" content="8;url=index.html" />
</head>
<body>
<div class="main center">
<div class="loader" style="margin-bottom: 75px;">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<p>重新启动中…</p>
</div>
</body>
</html>