-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGrowing-Shrinking-Bars in HTML
73 lines (62 loc) · 1.31 KB
/
Growing-Shrinking-Bars in HTML
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
HTML-
<div class="logo-holder">
<div class="bg"></div>
<div class="bar"></div>
<div class="bar fill1"></div>
<div class="bar fill2"></div>
<div class="bar fill3"></div>
<div class="bar fill4"></div>
<div class="bar fill1"></div>
<div class="bar fill5"></div>
<div class="bar fill6"></div>
<div class="bar"></div>
</div>
--------------------------------------------------------------
CSS-
@keyframes fill {
0% { width: 0; }
33% { width: 30px;}
66% { width: 10px;}
100% { width: 105px; }
}
@keyframes fill-1 {
0% { width: 0; }
33% { width: 50px;}
66% { width: 20px;}
100% { width: 130px; }
}
@keyframes fill-2 {
0% { width: 0; }
33% { width: 90px;}
66% { width: 70px;}
100% { width: 136px; }
}
@keyframes fill-3 {
0% { width: 0; }
33% { width: 50px;}
66% { width: 24px;}
100% { width: 109px; }
}
@keyframes fill-4 {
0% { width: 0; }
33% { width: 98px;}
66% { width: 34px;}
100% { width: 99px; }
}
@keyframes fill-5 {
0% { width: 0; }
33% { width: 30px;}
66% { width: 10px;}
100% { width: 148px; }
}
@keyframes fill-6 {
0% { width: 0; }
33% { width: 48px;}
66% { width: 22px;}
100% { width: 140px; }
}
@keyframes colors {
0% { background-color: #5a5a5a;}
50% { background-color: #3a3;}
100% { background-color: #6a6a6a;}
}