Bootstrap Carousel slideshow doesn't scroll through more than three slides -
i can't make slideshow automatically scroll through of pictures. scrolls through 3 pictures, have six. when click on arrows, scrolls through of pictures, doesn't scroll through of pictures automatically. works when site isn't live, doesn't work in chrome when live. here code..
<div id="carousel-example-generic" class="carousel-inner" data-ride="carousel"> <!-- indicators --> <ol class="carousel-indicators"> <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> <li data-target="#carousel-example-generic" data-slide-to="1"></li> <li data-target="#carousel-example-generic" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <div class="item active"> <img src="img/landscape.jpg" alt="landscape design , installation"> <div class="carousel-caption"></div> </div> <div class="item"> <img src="img/patio.jpg" alt="stonework"> <div class="carousel-caption"></div> </div> <div class="item"> <img src="img/patio2.jpg" alt="full-service"> <div class="carousel-caption"></div> </div> <div class="item"> <img src="img/firepit.png" alt="fire pit"> <div class="carousel-caption"></div> </div> <div class="item"> <img src="img/deck.png" alt="deck"> <div class="carousel-caption"></div> </div> <div class="item"> <img src="img/gardens.png" alt="deck"> <div class="carousel-caption"></div> </div> </div> <!-- controls --> <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span></a> <a class="right carousel-control" href="#carousel-example-generic" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div>
you need add more data-targets:
<li data-target="#carousel-example-generic" data-slide-to="3"></li> <li data-target="#carousel-example-generic" data-slide-to="4"></li> <li data-target="#carousel-example-generic" data-slide-to="5"></li> since have 6 slides need to have 6 data targets (starting 0)
Comments
Post a Comment