Is there a way to enable mouse scroll (up-down) to control the slides similar to the keys on keyboard?
I am experimenting with Jssor grid slider in particular.
Is there a way to enable mouse scroll (up-down) to control the slides similar to the keys on keyboard?
I am experimenting with Jssor grid slider in particular.
 
    
     
    
    First you'll want to detect the direction of scroll and perhaps the distance then from this you can navigate the slide show:
var lastScrollTop = 0;
$(window).scroll(function(event){
   var st = $(this).scrollTop();
   if (st > lastScrollTop){
       $Next() // next slide
   } else {
      $Prev() // prev slide
   }
   lastScrollTop = st;
});
 
    
    