"website loader animation"
Bootstrap 3.0.0 Snippet by sumi9xm

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
<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="load-overlay">
<div class="loader">
<i></i><i></i><i></i><i></i><i></i>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="holder">
<div class="box-1"></div>
<div class="box-2"></div>
<h1>Z</h1>
</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
/*============== loading Script ==============
========================================= */
.loader i {
position: relative;
display: inline-block;
margin: 0 4px;
width: 5px;
height: 15px;
border-radius: 2px;
border: solid #000;
border-width: 0 1px 1px 0;
background: #000;
animation: tilt infinite 5s cubic-bezier(0.955, -0.010, 1.000, 1.000);
transform-origin: 100% 100%;
}
.loader i::before {
content: '';
position: absolute;
z-index: -1;
bottom: 0;
display: block;
width: 5px;
height: 5px;
background: transparent;
box-shadow: 0 2px rgba(0, 0, 0, .3);
animation: stretch infinite 5s cubic-bezier(0.955, -0.010, 1.000, 1.000);
opacity: 0;
transform-origin: 0% 0%;
}
.loader i:nth-child(2), .loader i:nth-child(2)::before {
animation-delay: .3s;
}
.loader i:nth-child(3), .loader i:nth-child(3)::before {
animation-delay: .6s;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: