-
Notifications
You must be signed in to change notification settings - Fork 0
/
加载中等待动画.html
84 lines (83 loc) · 1.55 KB
/
加载中等待动画.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<style type="text/css">
.loading{
padding:100px;
}
.loading .loading-box {
position: relative;
margin: 0 auto;
width: 80px;
height: 80px;
}
.loading .loading-box .rond {
position: absolute;
top: 0;
left: 0;
width: 80px;
height: 80px;
border: 1px solid #333;
border-radius: 50%;
-webkit-animation: ani-rond 2s infinite;
animation: ani-rond 2s infinite;
}
.loading .loading-box .dot {
position: absolute;
left: 15px;
top: 0px;
height: 10px;
width: 10px;
background-color: #333;
border-radius: 50%;
}
.loading .loading-box .load {
position: absolute;
top: 15px;
left: 12px;
color: #333;
font-family: calibri;
text-align: center;
}
/* keyframes */
@-webkit-keyframes ani-rond {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes ani-rond {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="loading">
<div class="loading-box">
<div class="rond">
<div class="dot"></div>
</div>
<div class="load">
<p>loading...</p>
</div>
</div>
</div>
</body>
</html>