-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcount.css
75 lines (62 loc) · 1.03 KB
/
count.css
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
#countdown {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.countdown-item {
font-size: 20px;
border-radius: 50%;
text-align: center;
width: 100px;
height: 100px;
line-height: 100px;
position: relative;
opacity: 0;
margin: 5px;
}
.countdown-item.show {
animation: fadein 2s forwards;
}
.countdown-item::before {
position: absolute;
content: ' ';
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #fff;
left: 0;
top: 0;
opacity: .1;
}
.countdown-item.days {
animation-delay: 1s;
}
.countdown-item.hours {
animation-delay: 1.5s;
}
.countdown-item.minutes {
animation-delay: 2s;
}
.countdown-item.seconds {
animation-delay: 2.5s;
}
.countdown-item.days::after {
content: attr(data-days);
}
.countdown-item.hours::after {
content: attr(data-hours);
}
.countdown-item.minutes::after {
content: attr(data-minutes);
}
.countdown-item.seconds::after {
content: attr(data-seconds);
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}