-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (40 loc) · 874 Bytes
/
Copy pathstyles.css
File metadata and controls
67 lines (40 loc) · 874 Bytes
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
@keyframes jump {
0% {bottom : 0;}
50% {bottom : 185px;}
100% {bottom: 0;}
}
body {
display:flex;
justify-content:center;
align-items:center;
}
.animation {
display:flex;
justify-content:center;
flex-direction:row;
column-gap : 40px;
}
.ball {
position:relative;
height: 25px;
width: 25px;
background-color: #bbb;
box-shadow: 5px 10px 44px #929292;
border-radius: 50%;
animation-name : jump;
animation-duration : 1.07s;
animation-timing-function : linear;
animation-iteration-count : infinite;
}
.ball:nth-child(2) {
animation-delay : 0.2s;
}
.ball:nth-child(3) {
animation-delay : 0.4s;
}
.ball:nth-child(4) {
animation-delay : 0.6s;
}
.ball:nth-child(5) {
animation-delay : 0.8s;
}