"carousel examples"
Bootstrap 3.1.0 Snippet by escapedlion

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="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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">
<section id="wrapper">
<div class="row">
<div class="col-md-6">
<div id="private_label" class="panel panel-default" class="carousel slide" data-ride="carousel">
<div class="panel-heading">
<h3 class="panel-title">
Single Thumbnail
</h3>
</div>
<div class="panel-body" style="padding: 0px;">
<div class="carousel-inner">
<ol class="carousel-indicators">
<li data-target="#private_label" data-slide-to="0" class="active"></li>
<li data-target="#private_label" data-slide-to="1"></li>
<li data-target="#private_label" data-slide-to="2"></li>
<li data-target="#private_label" data-slide-to="3"></li>
<li data-target="#private_label" data-slide-to="4"></li>
<li data-target="#private_label" data-slide-to="5"></li>
<li data-target="#private_label" data-slide-to="6"></li>
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
.panel {margin-top: 25px;}
#moveBack
{
color: #ecf0f1;
border-right: .5px solid #ecf0f1;
}
#launchWebsite
{
color: #ecf0f1;
border-right: .25px solid #ecf0f1;
}
#emailWebsite
{
color: #ecf0f1;
}
#moveForward
{
color: #ecf0f1;
border-left: .5px solid #ecf0f1;
}
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
$("#toggle-chevron").click(function () {
if ($('#side-outer > #fullwidth').is(":visible") === true) {
$("#side-outer").toggleClass("active");
$("#toggle-chevron").toggleClass("active");
$("#toggle-chevron").toggleClass("fa-chevron-right");
} else {
$("#side-outer").toggleClass("active");
$("#toggle-chevron").toggleClass("active");
$("#toggle-chevron").toggleClass("fa-chevron-left");
}
});
$("#shortwidth").hide();
$('#toggle-bars').click(function () {
if ($('#side-inner > #shortwidth').is(":visible") === true) {
$("#shortwidth").animate({width: "hide"}, 1500, "easeOutBounce");
$("#toggle-bars").toggleClass("active");
} else {
$("#shortwidth").animate({width: "show"}, 1500, "easeOutBounce");
$("#toggle-bars").toggleClass("active");
}
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: