Created
January 27, 2018 06:01
-
-
Save DevShahidul/b2a6078088ea41cd0e402cbc9f16822c to your computer and use it in GitHub Desktop.
See example on here >> https://www.themepunch.com/faq/slide-change-based-mousewheel/ or http://173.254.28.169/~greenbo4/greenbox/project/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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