"Css Loader"
Bootstrap 4.1.1 Snippet by kanikamadaan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="CoE-fading-circle">
<div class="CoE-circle1 CoE-circle"></div>
<div class="CoE-circle2 CoE-circle"></div>
<div class="CoE-circle3 CoE-circle"></div>
<div class="CoE-circle4 CoE-circle"></div>
<div class="CoE-circle5 CoE-circle"></div>
<div class="CoE-circle6 CoE-circle"></div>
<div class="CoE-circle7 CoE-circle"></div>
<div class="CoE-circle8 CoE-circle"></div>
<div class="CoE-circle9 CoE-circle"></div>
<div class="CoE-circle10 CoE-circle"></div>
<div class="CoE-circle11 CoE-circle"></div>
<div class="CoE-circle12 CoE-circle"></div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.CoE-fading-circle {
margin: 100px auto;
width: 40px;
height: 40px;
position: relative
}
.CoE-fading-circle .CoE-circle {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0
}
.CoE-fading-circle .CoE-circle:before {
content: '';
display: block;
margin: 0 auto;
width: 15%;
height: 15%;
background-color: #4bcd3e;
border-radius: 100%;
-webkit-animation: CoE-circleFadeDelay 1.2s infinite ease-in-out both;
animation: CoE-circleFadeDelay 1.2s infinite ease-in-out both
}
.CoE-fading-circle .CoE-circle2 {
-webkit-transform: rotate(30deg);
-ms-transform: rotate(30deg);
transform: rotate(30deg)
}
.CoE-fading-circle .CoE-circle3 {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: