# css 实现 loading 加载
# 快速导航
# 正方形加载 Loading1
html 代码
点击即可查看
<div class="load-container">
<div class="boxLoading"></div>
</div>
1
2
3
2
3
css 代码
点击即可查看
.load-container {
position: relative;
width: 200px;
height: 200px;
margin: 0 auto;
.boxLoading {
width: 50px;
height: 50px;
margin: auto;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
&:before {
content: '';
width: 50px;
height: 5px;
background: #000;
opacity: 0.1;
position: absolute;
top: 59px;
left: 0;
border-radius: 50%;
animation: shadow 0.5s linear infinite;
}
&:after {
content: '';
width: 50px;
height: 50px;
background: #00adb5;
animation: animate 0.5s linear infinite;
position: absolute;
top: 0;
left: 0;
border-radius: 3px;
}
}
}
@keyframes animate {
17% {
border-bottom-right-radius: 3px;
}
25% {
transform: translateY(9px) rotate(22.5deg);
}
50% {
transform: translateY(18px) scale(1, 0.9) rotate(45deg);
border-bottom-right-radius: 40px;
}
75% {
transform: translateY(9px) rotate(67.5deg);
}
100% {
transform: translateY(0) rotate(90deg);
}
}
@keyframes shadow {
0%,
100% {
transform: scale(1, 1);
}
50% {
transform: scale(1.2, 1);
}
}
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
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
# 圆形加载 loading2
html 代码
点击即可查看代码
<div class="load-container">
<svg id="load" x="0px" y="0px" viewBox="0 0 150 150">
<circle id="loading-inner" cx="75" cy="75" r="60" />
</svg>
</div>
1
2
3
4
5
2
3
4
5
css 代码
点击即可查看代码
.load-container {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
height: 150px;
}
#load {
width: 75px;
animation: loading 3s linear infinite;
#loading-inner {
stroke: {
dashoffset: 0;
dasharray: 300;
width: 10;
miterlimit: 10;
linecap: round;
}
animation: loading-circle 2s linear infinite;
stroke: #00adb5;
fill: transparent;
}
}
@keyframes loading {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
@keyframes loading-circle {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -600;
}
}
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
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
# 圆形加载 Loading3
html 代码
点击即可查看
<div class="load"></div>
1
css 代码
点击即可查看
.load {
width: 50px;
height: 50px;
margin: 0 auto;
position: relative;
border-radius: 50%;
overflow: hidden;
background-color: rgba(0, 169, 178, 0.2);
&::before {
content: '';
width: 70px;
height: 70px;
background-color: #00adb5;
position: absolute;
left: 50%;
bottom: 50%;
z-index: 1;
transform-origin: left bottom;
animation: rotate 1.5s infinite linear;
}
&::after {
content: '';
width: 40px;
height: 40px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
background-color: #fff;
z-index: 2;
border-radius: 50%;
}
}
@keyframes rotate {
0% {
transform: rotate(0);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
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
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
# 方形加载 Loading4
html 代码
点击即可查看代码
<div class="load-container">
<div class="container">
<div class="boxLoading boxLoading1"></div>
<div class="boxLoading boxLoading2"></div>
<div class="boxLoading boxLoading3"></div>
<div class="boxLoading boxLoading4"></div>
<div class="boxLoading boxLoading5"></div>
</div>
</div>
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
css 代码
点击即可查看代码
.load-container {
height: 150px;
display: flex;
align-items: center;
justify-content: center;
.container {
width: 50px;
height: 60px;
text-align: center;
font-size: 10px;
.boxLoading {
background-color: #00adb5;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
animation: stretchdelay 1.2s infinite ease-in-out;
}
.boxLoading2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.boxLoading3 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.boxLoading4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.boxLoading5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
}
}
@-webkit-keyframes stretchdelay {
0%,
40%,
100% {
-webkit-transform: scaleY(0.4);
}
20% {
-webkit-transform: scaleY(1);
}
}
@keyframes stretchdelay {
0%,
40%,
100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1);
-webkit-transform: scaleY(1);
}
}
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
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
# 圆形加载 loading5
html代码
点击即可查看代码
<div class="load-container">
<div class="load load1"></div>
<div class="load load2"></div>
<div class="load"></div>
</div>
1
2
3
4
5
2
3
4
5
css 代码
点击即可查看代码
.load-container {
margin: 50px auto;
width: 150px;
text-align: center;
.load {
width: 20px;
height: 20px;
background-color: #00adb5;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.load1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.load2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
}
@-webkit-keyframes bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes bouncedelay {
0%,
80%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
40% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
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
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
# 圆形加载 Loading6
html 代码
点击即可查看
<div class="load-container">
<div class="container container1">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="circle circle3"></div>
<div class="circle circle4"></div>
</div>
<div class="container container2">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="circle circle3"></div>
<div class="circle circle4"></div>
</div>
<div class="container container3">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="circle circle3"></div>
<div class="circle circle4"></div>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
css 代码
点击即可查看代码
.load-container {
margin: 50px auto;
width: 48px;
height: 48px;
position: relative;
.container {
position: absolute;
width: 100%;
height: 100%;
.circle {
width: 12px;
height: 12px;
background-color: #00adb5;
border-radius: 100%;
position: absolute;
-webkit-animation: bouncedelay 1.2s infinite ease-in-out;
animation: bouncedelay 1.2s infinite ease-in-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.circle1 {
top: 0;
left: 0;
}
.circle2 {
top: 0;
right: 0;
}
.circle3 {
right: 0;
bottom: 0;
}
.circle4 {
left: 0;
bottom: 0;
}
}
.container1 {
.circle2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.circle3 {
-webkit-animation-delay: -0.6s;
animation-delay: -0.6s;
}
.circle4 {
-webkit-animation-delay: -0.3s;
animation-delay: -0.3s;
}
}
.container2 {
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
.circle1 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.circle2 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.circle3 {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}
.circle4 {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
}
.container3 {
-webkit-transform: rotateZ(90deg);
transform: rotateZ(90deg);
.circle1 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.circle2 {
-webkit-animation-delay: -0.7s;
animation-delay: -0.7s;
}
.circle3 {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}
.circle4 {
-webkit-animation-delay: -0.1s;
animation-delay: -0.1s;
}
}
}
@-webkit-keyframes bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes bouncedelay {
0%,
80%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
40% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
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
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