"Modal with tabbed content"
Bootstrap 2.3.2 Snippet by Erez-IL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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">
<div class="span12">
<a data-toggle="modal" class="btn" href="#loginModal">Log in</a>
<div class="modal hide" id="loginModal">
<div class="contener_box box"> <i></i> </div>
</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
.contener_box
{
-webkit-perspective: 5em;
-moz-perspective: 5em;
-ms-perspective: 5em;
perspective: 10em;
}
.box {
display: block;
width: 5em;
height: 5em;
margin: 10em auto;
-webkit-transform-style: preserve-3d;
-webkit-transition: transform 350ms;
-webkit-animation: spin 4s infinite linear;
-moz-transform-style: preserve-3d;
-moz-transition: transform 350ms;
-moz-animation: spin 4s infinite linear;
-ms-transform-style: preserve-3d;
-ms-transition: transform 350ms;
-ms-animation: spin 4s infinite linear;
transform-style: preserve-3d;
transition: transform 350ms;
animation: spin 4s infinite linear;
}
.box:before, .box:after, .box i, .box i:before, .box i:after {
content: '';
display: block;
width: 5em;
height: 5em;
position: absolute;
-webkit-animation: lighting 2s infinite linear;
-moz-animation: lighting 2s infinite linear;
-ms-animation: lighting 2s infinite linear;
animation: lighting 2s infinite linear;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: