Skip to content

Instantly share code, notes, and snippets.

@kisildev
Created May 30, 2019 12:31
Show Gist options
  • Save kisildev/535d4ef11e32405cd325619be963c62f to your computer and use it in GitHub Desktop.
Save kisildev/535d4ef11e32405cd325619be963c62f to your computer and use it in GitHub Desktop.
Slick slider change slides on scrool
$slider.on('wheel', (function(e) {
e.preventDefault();
if (e.originalEvent.deltaY < 0) {
$(this).slick('slickNext');
} else {
$(this).slick('slickPrev');
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment