"Simple Carousel"
Bootstrap 4.0.0 Snippet by zxalif

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.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 id="carouselExampleIndicators" class="carousel slide" data-ride="carousel"> <ol class="sr-only carousel-indicators"> <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li> <li data-target="#carouselExampleIndicators" data-slide-to="1"></li> <li data-target="#carouselExampleIndicators" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <div class="carousel-item active"> <div class="row"> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> </div> </div> <div class="carousel-item"> <div class="row"> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> </div> </div> <div class="carousel-item"> <div class="row"> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> <div class="col-md-3"><img class="img-fluid img-thumbnail" src="https://lh3.googleusercontent.com/8kwFvYIxWVaBIdlObG3Nu9GubnaCmhGPuqGCLB7UokxigrvCLSZMzKxhdOKV7B4UyPPN=h900" alt="Third slide"></div> </div> </div> </div> <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div>
$(document).ready(function() { $('#Carousel').carousel({ interval: 1000 }) });

Related: See More


Questions / Comments: