"Loading Item"
Bootstrap 3.3.0 Snippet by testtripathi

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<!DOCTYPE html>
<html>
<head>
<title>Loading</title>
<link type="text/css" rel="stylesheet" href="body.css"/>
</head>
<body>
<div id="mainbody">
<div id="element">
<div id="loader2"></div>
<div id="content">
<h3>Normal Loader</h3>
</div>
</div>
<div id="element">
<div id="loader3"></div>
<div id="content">
<h3>Dual Loader</h3>
</div>
</div>
<div id="element">
<div id="loader1"></div>
<div id="content">
<h3>Thin Loader</h3>
</div>
</div>
<div id="element">
<div id="loader1_1"></div>
<div id="content">
<h3>Thin Loader Anti</h3>
</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
h3{
font-family: monospace,Georgia,Courier;
font-size: 20px;
}
#mainbody{
transition:margin-left .5s;
padding:20px;
}
#element{
display: inline-block;
position: relative;
border:1px solid rgba(0,0,0,0.1);
box-shadow: 1px 5px 5px 3px rgba(0,0,0,0.2);
margin:20px 20px 20px 20px;
min-height: 200px;
min-width: 200px;
}
#content{
position: absolute;
bottom:0;
width:100%;
height: 30%;
color:rgba(255,255,255,1.0);
text-align:center;
margin: auto;
background-color: rgba(0,0,255,0.9);
box-shadow: 1px 1px 1px 1px rgba(0,0,255,0.5);
}
#loader1{
margin:20px auto;
border:8px solid rgba(255,255,255,0.9);
border-radius: 50%;
height: 50px;
width: 50px;
box-shadow: 4px 2px 2px rgba(0,0,255,0.5);
animation: spin_1 2s linear infinite;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: