"Thumbnail Carousel - Single image sliding"
Bootstrap 3.2.0 Snippet by princeaddi

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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="span12"> <div class="well"> <div id="myCarousel" class="carousel fdi-Carousel slide"> <!-- Carousel items --> <div class="carousel fdi-Carousel slide" id="eventCarousel" data-interval="0"> <div class="carousel-inner onebyone-carosel"> <div class="item active"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="http://placehold.it/250x250" class="img-responsive center-block"></a> <div class="text-center">1</div> </div> </div> <div class="item"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="http://placehold.it/250x250" class="img-responsive center-block"></a> <div class="text-center">2</div> </div> </div> <div class="item"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="http://placehold.it/250x250" class="img-responsive center-block"></a> <div class="text-center">3</div> </div> </div> <div class="item"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="http://placehold.it/250x250" class="img-responsive center-block"></a> <div class="text-center">4</div> </div> </div> <div class="item"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="https://www.glu7.com/resources/images/blank.jpg" class="img-responsive center-block"></a> <div class="text-center">5</div> </div> </div> <div class="item"> <div class="col-lg-4 col-sm-4 col-xs-12"> <a href="#"><img src="https://www.glu7.com/resources/images/dentalplus.jpg" class="img-responsive center-block"></a> <div class="text-center">6</div> </div> </div> </div> <a class="left carousel-control" href="#eventCarousel" data-slide="prev"><i class="fa fa-angle-left fa-3x"></i></a> <a class="right carousel-control" href="#eventCarousel" data-slide="next"><i class="fa fa-angle-right fa-3x"></i></a> </div> <!--/carousel-inner--> </div><!--/myCarousel--> </div><!--/well--> </div> </div> </div>
.carousel-inner.onebyone-carosel { margin: auto; width: 90%; } .onebyone-carosel .active.left { left: -33.33%; } .onebyone-carosel .active.right { left: 33.33%; } .onebyone-carosel .next { left: 33.33%; } .onebyone-carosel .prev { left: -33.33%; } .right.carousel-control { background: #51dbfc; color: #FFF; height: 60px; top: 40%; line-height: 60px; font-family: 'Lato', sans-serif; font-weight: 100; } .left.carousel-control { background: #51dbfc; color: #FFF; height: 60px; top: 40%; line-height: 60px; font-family: 'Lato', sans-serif; font-weight: 100; } .carousel-control { width: 5%; }
$(document).ready(function () { $('#myCarousel').carousel({ interval: 10000 }) $('.fdi-Carousel .item').each(function () { var next = $(this).next(); if (!next.length) { next = $(this).siblings(':first'); } next.children(':first-child').clone().appendTo($(this)); if (next.next().length > 0) { next.next().children(':first-child').clone().appendTo($(this)); } else { $(this).siblings(':first').children(':first-child').clone().appendTo($(this)); } }); });

Related: See More


Questions / Comments: