"Carousel Inside Modal"
Bootstrap 3.2.0 Snippet by miguelbustamante

<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 text-center"> <h1> Click Me </h1> <!-- Large modal --> <div class'col-lg-3 col-md-3 col-xs-6 col-sm-6'> <a href="#" class="thumbnail" data-toggle='modal' data-target='.bs-example-modal-lg' style='width=150;'> <img src="http://placehold.it/1200x600/555/000&text=One" alt="..." width='150'> </a> </div> <!--<button class="btn btn-default" data-toggle="modal" data-target=".bs-example-modal-lg">Large modal</button>--> <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <!-- Wrapper for slides --> <div class="carousel-inner"> </div> <!-- Controls --> <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </a> <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </a> </div> </div> </div> </div> </div>
body { padding-top: 20px; } .btn-default { top: 25%; left:25%; color: #999; background: #fffccc; }
$(function(){ var images = ["http://placehold.it/1200x600/555/000&text=One", "http://placehold.it/1200x600/fffccc/000&text=Two", "http://placehold.it/1200x600/fcf00c/000&text=Three"] $.each(images, function(key, value){ if(key == 0){ $('.carousel-inner').append( "<div class='item active'>" + "<img class='img-responsive' src='" + value + "' alt='...'>" + "</div>" ); } else { $('.carousel-inner').append( "<div class='item'>" + "<img class='img-responsive' src='" + value + "' alt='...'>" + "</div>" ); } }); })

Related: See More


Questions / Comments: