我的滑块在页面加载后没有自动播放。如果我右键单击,则打开自动播放。有什么问题?
$('#myCarousel').on('slid', '', 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();
}
}).trigger('slid');
答案 0 :(得分:2)
将间隔设置为最低
// invoke the carousel
$('#myCarousel').carousel({
interval: 2000
});