3

有什么方法可以使用鼠标滚动来更改 Twitter Bootstrap Carousel 上的幻灯片?

问候

4

2 回答 2

11

正如巴拉克奥巴马所说:“是的,你可以”。以下代码将执行您想要的操作:

$('#myCarousel').bind('mousewheel', function(e){$(this).carousel('next');});
于 2013-05-10T12:39:26.973 回答
2

也许有人还需要

$('#myCarousel').bind('mousewheel DOMMouseScroll', function(e){
            if(e.originalEvent.wheelDelta > 0 || e.originalEvent.detail < 0{
                $(this).carousel('prev');
            }
            else{
                $(this).carousel('next');
            }
        });

它需要向左或向右滚动鼠标滚轮

于 2016-02-11T08:47:41.697 回答