解决方法
将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(); } });
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。