Last active
December 7, 2016 12:43
-
-
Save RolandVels/b8f4f49fdae36edb3f491bf18bf3961b to your computer and use it in GitHub Desktop.
Carousel
This file contains 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
//Carousel | |
// http://owlgraphic.com/owlcarousel/ | |
var owl = $(".carousel"); | |
owl.owlCarousel({ | |
items : 1, | |
}); | |
///Delete this part to remove mousewheel scroll img prev/next | |
owl.on("mousewheel", ".owl-wrapper", function (e) { | |
if (e.deltaY > 0) { | |
owl.trigger("owl.prev"); | |
} else { | |
owl.trigger("owl.next"); | |
} | |
e.preventDefault(); | |
}); | |
$(".next-button").click(function(){ | |
owl.trigger("owl.next"); | |
}); | |
$(".prev-button").click(function(){ | |
owl.trigger("owl.prev"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment