How to use Bootstrap Carousel Plugins


You can try to run the following code to implement carousel plugins in Bootstrap −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div id = "myCarousel" class = "carousel slide">
         <!-- Carousel indicators -->
         <ol class = "carousel-indicators">
            <li data-target = "#myCarousel" data-slide-to = "0" class = "active"></li>
            <li data-target = "#myCarousel" data-slide-to = "1"></li>
            <li data-target = "#myCarousel" data-slide-to = "2"></li>
         </ol>
         <!-- Carousel items -->
         <div class = "carousel-inner">
            <div class = "item active">
               <img src = "/bootstrap/images/slide1.png" alt = "Slide One">
            </div>
            <div class = "item">
               <img src = "/bootstrap/images/slide2.png" alt = "Slide Two">
            </div>
            <div class = "item">
               <img src = "/bootstrap/images/slide2.png" alt = "Slide Three">
            </div>
         </div>
         <!-- Carousel nav -->
         <a class = "carousel-control left" href = "#myCarousel" data-slide = "prev">‹</a>
         <a class = "carousel-control right" href = "#myCarousel" data-slide = "next">›</a>
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

103 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements