Html
    Css
    Js
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
* {
margin:0;
padding:0
}
body {
background:#666666;
}
.loader {
width:80px;
height:120px;
margin:100px auto;
position:relative
}
.loader .dot {
left:36%;
width:10px;
height:10px;
border-radius:50%;
background:white;
transform-origin:10px 40px;
position:absolute;
animation:dotrotate 2s infinite;
}
.loader .dot:nth-of-type(2) {
animation-delay:0.2s;
}
.loader .dot:nth-of-type(3) {
animation-delay:0.3s;
}
.loader .dot:nth-of-type(4) {
animation-delay:0.4s;
}
.loader .dot:nth-of-type(5) {
animation-delay:0.5s;
}
.loader .dot:nth-of-type(6) {
animation-delay:0.6s;
}
.loader .dot:last-of-type {
animation-delay:0.7s;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

加载动画css3

css3animation动画

0