我希望这样,当我按转盘上的下一个按钮时,如果它已到达幻灯片的末端,则不要回绕并返回到第一张幻灯片。在bootstrap 3中有一种简单的方法可以做到这一点吗?

最佳答案

wrap选项设置为false可使轮播自动停止循环。

$('#myCarousel').carousel({
  interval: 1000,
  wrap: false
});

另外,如果您想在轮播显示第一张/最后一张幻灯片时隐藏左右控件,可以这样做:
  $('#myCarousel').on('slid.bs.carousel', '', function() {
  var $this = $(this);

  $this.children('.carousel-control').show();

  if($('.carousel-inner .item:first').hasClass('active')) {
    $this.children('.left.carousel-control').hide();
  } else if($('.carousel-inner .item:last').hasClass('active')) {
    $this.children('.right.carousel-control').hide();
  }

});

DEMO

关于twitter-bootstrap - 在幻灯片的末尾停止自举轮播,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25562053/

10-12 17:10