我试图让这些插件一起工作。我不确定我是否最好修改MixItUp以使用旋转木马或其他方式。
Owl Carousel - http://owlgraphic.com/owlcarousel/
MixItUp - https://mixitup.kunkalabs.com/
$(document).ready(function () {
var carousel = $("#owl-demo");
carousel.owlCarousel();
carousel.mixItUp({
callbacks: {
onMixStart: function(state){
state.$show.parent().show();
},
onMixEnd: function(state){
state.$hide.parent().hide();
}
}
});
});