-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
73 lines (70 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>css3Animation</title>
<style>
.cssload-loader {
position: absolute;
left: 50%;
width: 39px;
height: 39px;
top:50%;
margin-top: -19px;
margin-left: -19px;
border-radius: 50%;
overflow: hidden;
animation: 1.44s cssload-spin cubic-bezier(0.46, -0.4, 0.2, 1.51) infinite both;
}
.cssload-loader:before, .cssload-loader:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
top: 0;
left: 0;
box-sizing: border-box;
border: 19px solid black;
border-top-color: rgb(250,66,72);
border-left-color: rgb(93,219,186);
border-bottom-color: rgb(237,230,112);
border-right-color: rgb(100,195,242);
}
.cssload-loader:before {
filter: blur(2px);
}
.cssload-loader:after {
animation: 1.44s cssload-normal-opacity cubic-bezier(0.46, -0.4, 0.2, 1.51) infinite both;
}
@keyframes cssload-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-2160deg);
}
}
@keyframes cssload-normal-opacity {
0% {
opacity: 1;
}
45% {
opacity: 0;
}
55% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="app" style="width:100%;height:100%;">
<div class="cssload-loader"></div>
</div>
<!-- built files will be auto injected -->
</body>
</html>