有没有办法让鼠标滚动(上下)控制幻灯片类似于键盘上的键?
我正在尝试Jssor grid slider。
答案 0 :(得分:3)
首先,您想要detect the direction of scroll,也许距离此处您可以浏览幻灯片:
var lastScrollTop = 0;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if (st > lastScrollTop){
$Next() // next slide
} else {
$Prev() // prev slide
}
lastScrollTop = st;
});