-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathripple.css
More file actions
53 lines (49 loc) · 815 Bytes
/
Copy pathripple.css
File metadata and controls
53 lines (49 loc) · 815 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
body{
margin:0;
padding : 0;
background: #3498db;
}
.container{
position:absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%) rotateX(70deg);
}
.ripple{
position:fixed;
top:0;
transform: translate(-50%);
width : 20px;
height: 20px;
border-radius: 50%;
animation : ripple 3s linear infinite;
}
.r2 {
animation-delay : 0.6s;
}
.r3 {
animation-delay : 1.2s;
}
.r4 {
animation-delay : 1.8s;
}
.r5 {
animation-delay : 2.4s;
}
.r6 {
animation-delay : 3.0s;
}
@keyframes ripple {
from{
border : 4px solid #8e44ad;
background: #9b59b670;
}
to {
border : 0px solid #8e44ad;
background: #9b59b670;
width : 400px;
height : 400px;
top : 20px;
opacity: 0;
}
}