"Preloader : Demo2"
Bootstrap 3.0.0 Snippet by napsterbd

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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">
<div class="col-md-12">
<div class="loader">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</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
.loader{
width: 100px;
height: 70px;
margin: 50px auto;
position: relative;
}
.loader span{
display: block;
width: 5px;
height: 10px;
background: #e43632;
position: absolute;
bottom: 0;
animation: loading-1 2.25s infinite ease-in-out;
}
.loader span:nth-child(2){
left: 11px;
animation-delay: .2s;
}
.loader span:nth-child(3){
left: 22px;
animation-delay: .4s;
}
.loader span:nth-child(4){
left: 33px;
animation-delay: .6s;
}
.loader span:nth-child(5){
left: 44px;
animation-delay: .8s;
}
.loader span:nth-child(6){
left: 55px;
animation-delay: 1s;
}
.loader span:nth-child(7){
left: 66px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: