"Svg loading animation "
Bootstrap 3.0.0 Snippet by bibinpiyoosh

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</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
body{
margin: 0px;
padding: 0px;
background-color: #000;
}
ul{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
margin: 0px;
padding: 0px;
display: flex;
}
ul li{
list-style: none;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #fff;
animation: animate 1.6s ease-in-out infinite;
margin: 0px;
padding: 0;
}
@keyframes animate{
0%, 40%, 100%
{
transform: scale(0.2);
}
20%
{
transform: scale(1);
}
}
ul li:nth-child(1){
animation-delay:-1.4s;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: