我正在尝试更改滑块顺序。例如,如果我有3张图像,则滑块的滑动像1至2和2至3。 strong>。
请帮助...!在这里,我的旋转木马
$(".carousel").swipe({
swipe: function(event, direction, distance, duration, fingerCount, fingerData) {
if (direction == 'left') $(this).carousel('next');
if (direction == 'right') $(this).carousel('prev');
},
});