"Spinner"
Bootstrap 3.3.0 Snippet by Rashad1212

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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 ---------->
<div class="container">
<div class="row">
<div class="spin">
<span class="one"></span>
<span class="two"></span>
<span class="three"></span>
</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
.spin{
height:auto;
width:auto;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%, -50%);
}
.spin span{
height:56px;
width:56px;
border:1px solid green;
display:block;
border-radius:50%;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%, -50%);
animation:spin 1500ms ease-in-out infinite;
}
.spin .one{
animation-delay:500ms;
animation:spin 2000ms ease-in-out infinite;
}
.spin .two{
animation:spin 1700ms ease-in-out infinite;
animation-delay:300ms;
border:10px solid teal;
}
.spin .two{
animation:spin 2000ms ease-in-out infinite;
border-color:yellow;
}
@keyframes spin{
0%{
transform:scale(0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: