-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (94 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<script
type="text/javascript"
src="http://api.map.baidu.com/getscript?v=2.0&ak=1dweTUj6HlNxAPGkBQFnaG5Xe9Ms4meK&services=&t=20170517145936"
></script>
<link rel="shortcut icon" href="static/img/logo3.png" type="image/icon" />
<title>DAOYE 溯源管理</title>
<style>
.project-loading {
color:#4886ff;
background: #fff;
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
z-index: 100000;
}
.project-loading .loader {
position: fixed;
top: 50%;
left: 50%;
}
@-webkit-keyframes line-scale-pulse-out {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
@keyframes line-scale-pulse-out {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
.line-scale-pulse-out > div {
width: 3px;
height: 33px;
border-radius: 2px;
margin: 1px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
-webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
-webkit-animation-delay: -0.4s !important;
animation-delay: -0.4s !important;
}
.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) {
-webkit-animation-delay: -0.2s !important;
animation-delay: -0.2s !important;
}
</style>
</head>
<body>
<div id="febs">
<div class="project-loading">
<div class="loader">
<div class="loader-inner line-scale-pulse-out">
<div style="background:#f95476"></div>
<div style="background:#ffb74e"></div>
<div style="background:#4886ff"></div>
<div style="background:#ffb74e"></div>
<div style="background:#f95476"></div>
</div>
</div>
</div>
</div>
</body>
</html>