-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.html
147 lines (131 loc) · 3.18 KB
/
5.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>咕咕学加载中...</title>
<style>
/*! Animate.css - http://daneden.me/animate Licensed under the MIT license */
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
#logo {
animation-duration: 0.75s;
animation-fill-mode: both;
animation-name: fadeInUp;
margin: 0 0 0.75em 0;
display: inline-block;
line-height: 1;
font-size:26px;
font-weight: 200;
will-change: transform;
}
#logo img {
max-width: 3em;
height: auto;
background: #fff;
border-radius: 0.6em;
padding: 0.4em;
box-shadow: 0 0.1em 0.15em -0.1em rgba(0,0,0,0.15), 0 0.2em 0.25em -0.05em rgba(0,0,0,0.1), 0 0.3em 0.3em rgba(0,0,0,0.05);
}
/* Main style */
body {
padding: 0;
align-items: center;
font:16px/1.6 Helvetica Neue,PingFang SC,Source Han Sans SC,Source Han Sans CN,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
background:#f4f4f4;
}
body,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}h1,h2,h3,h4,h5,h6,strong{font-weight:700}a{color:#428bca;text-decoration:none}a:hover{text-decoration:underline}
.warpper {
display: flex;
height: 100vh;
width: 100vw;
}
.container {
max-width: 24em;
padding: 1em;
margin: auto;
text-align: center;
color: #333;
}
.container p {
animation-duration: 0.55s;
animation-delay:0.2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}
.progress-bar-container {
animation-duration: 0.75s;
animation-delay:0.75s;
animation-fill-mode: both;
animation-name: fadeInUp;
background: #fff;
max-width: 16em;
display: block;
height: 5px;
margin: 1em auto 2em auto;
border-radius: 1em;
overflow: hidden;
}
.progress-bar {
background: #24c7fc;
/*background: linear-gradient(90deg,#00aeef,#24c7fc);*/
display: block;
height: 5px;
border-radius: 1em;
}
.progress-bar {
animation: progress_bar_moving 2.5s cubic-bezier(0.65,0.05,0.36,1) infinite;
animation-delay:0.5s;
will-change: transform;
}
@keyframes progress_bar_moving {
0% {
transform: translateX(-101%);
}
50% {
transform: translateX(0%);
}
100% {
transform: translateX(101%);
}
}
footer {
font-size: 0.8em;
opacity: 0.4;
}
</style>
</head>
<body>
<main class="warpper">
<div class="container">
<h1 id="logo"><img src="https://cloudclass666.github.io/logo.png" alt="咕咕学"></h1><p>咕咕学加载中…</p>
<div class="progress-bar-container">
<div class="progress-bar">
</div>
</div>
</div>
</main>
<footer style="display:none;vertical-align: inherit;">::IM_UNDER_ATTACK_BOX::</footer>
</body>
</html>