" Animated Loading"
Bootstrap 2.3.2 Snippet by Gurdeep Osahan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/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">
<h2>Create your snippet's HTML, CSS and Javascript in the editor tabs</h2>
<div id="loading">
<ul class="bokeh">
<li></li>
<li></li>
<li></li>
</ul>
</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 {
background: #f4f4f2 url("img/page-bg.png") repeat scroll 0 0;
height: 100%;
left: 0;
margin: auto;
position: fixed;
top: 0;
width: 100%;
}
.bokeh {
border: 0.01em solid rgba(150, 150, 150, 0.1);
border-radius: 50%;
font-size: 100px;
height: 1em;
list-style: outside none none;
margin: 0 auto;
position: relative;
top: 35%;
width: 1em;
z-index: 2147483647;
}
.bokeh li {
border-radius: 50%;
height: 0.2em;
position: absolute;
width: 0.2em;
}
.bokeh li:nth-child(1) {
animation: 1.13s linear 0s normal none infinite running rota, 3.67s ease-in-out 0s alternate none infinite running opa;
background: #00c176 none repeat scroll 0 0;
left: 50%;
margin: 0 0 0 -0.1em;
top: 0;
transform-origin: 50% 250% 0;
}
.bokeh li:nth-child(2) {
animation: 1.86s linear 0s normal none infinite running rota, 4.29s ease-in-out 0s alternate none infinite running opa;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: