"How to create single photo carousel with indicator at bottom"
Bootstrap 3.3.0 Snippet by SyawaluddinAmin

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 ---------->
<div class="container">
<div class="row">
<h2>How to create single photo carousel with indicator at bottom</h2>
<h4>Syawaluddin Amin, S.Kom © 2016</h4>
<h6>see more tutorial <a href="http://www.pangeran-it.blogspot.com" target="_blank">Pangeran IT</a> -
have fun with <a href="https://thefunnymeme.blogspot.com" target="_blank">THE FUNNY MEME</a> -
dedicated to football lovers <a href="https://futball-pro.blogspot.com" target="_blank">WALLPAPER FOOTBALL</a> -
news <a href="https://www.medanmendai.com" target="_blank">MEDAN MENDAI</a></h6>
<div class='row'>
<div class='col-md-3'>
<div class="carousel slide" data-ride="carousel" id="quote-carousel">
<!-- Bottom Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#quote-carousel" data-slide-to="1"></li>
<li data-target="#quote-carousel" data-slide-to="2"></li>
</ol>
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner">
<!-- Quote 1 -->
<div class="item active">
<blockquote>
<div class="row">
<div class="col-md-3 text-center">
<center>
<img src="https://placeholdit.imgix.net/~text?txtsize=14&bg=449955&txtclr=ffffff&txt=150%C3%97200&w=150&h=200">
</center>
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
#quote-carousel
{
padding: 0 10px 30px 10px;
margin-top: 30px;
}
#quote-carousel .carousel-control
{
background: none;
color: #222;
font-size: 2.3em;
text-shadow: none;
margin-top: 30px;
}
#quote-carousel .carousel-control.left
{
left: -12px;
}
#quote-carousel .carousel-control.right
{
right: -12px;
}
#quote-carousel .carousel-indicators
{
top: auto;
bottom: 0px;
}
#quote-carousel .carousel-indicators li
{
background: green;
}
#quote-carousel .carousel-indicators .active
{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
$(document).ready(function() {
//Set the carousel options
$('#quote-carousel').carousel({
pauseOnHover: true,
interval: 1000,
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: