How to remove cyclic scrolling in the standard Bootstrap slider, and make it so that on the first slide it throws only when it reaches the end.

$(document).ready(function() { $('.carousel').carousel({ interval: 1000, }) }); 
  • And how does cyclic scrolling differ from throwing on the first slide when reaching the end? - Regent
  • there is the same type of info, so you need to make it clear that the slider is over and the viewing starts again - Seva A
  • Some very poor set of parameters for this carousel. You can do this: set the interval to 0 (or false , as suggested by the documentation) and use .carousel('next') and .carousel(0) in a function that will be called periodically. - Regent

0