Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Created January 27, 2018 06:01
Show Gist options
  • Select an option

  • Save DevShahidul/b2a6078088ea41cd0e402cbc9f16822c to your computer and use it in GitHub Desktop.

Select an option

Save DevShahidul/b2a6078088ea41cd0e402cbc9f16822c to your computer and use it in GitHub Desktop.
var slider = $('#work-carousel'); // Add yoru slider id here
slider.on('mousewheel DOMMouseScroll', function(event) {
event.preventDefault();
if(event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
slider.slick('slickPrev');
}
else {
slider.slick('slickNext');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment