有什么方法可以使用鼠标滚动来更改 Twitter Bootstrap Carousel 上的幻灯片?
问候
正如巴拉克奥巴马所说:“是的,你可以”。以下代码将执行您想要的操作:
$('#myCarousel').bind('mousewheel', function(e){$(this).carousel('next');});
也许有人还需要
$('#myCarousel').bind('mousewheel DOMMouseScroll', function(e){
if(e.originalEvent.wheelDelta > 0 || e.originalEvent.detail < 0{
$(this).carousel('prev');
}
else{
$(this).carousel('next');
}
});
它需要向左或向右滚动鼠标滚轮