我正在使用一个名为Basic jQuery滑块的插件。滑块工作正常我只有客户提出改变方向的荒谬请求,因此幻灯片向右滑动而不是向左滑动。
我可以设置方向的变量,所以我想知道自定义这个插件是多么困难?
我经历过改变某些价值观,但我无法让它发挥作用......
执行动画的脚本位于......
之下else if (settings.animation === 'slide') {
if (settings.showMarkers) {
markers.eq(slidePosition - 1).removeClass('active-marker');
if (next === slideCount - 1) {
markers.eq(0).addClass('active-marker');
} else if (next === 0) {
markers.eq(slideCount - 3).addClass('active-marker');
} else {
markers.eq(next - 1).addClass('active-marker');
}
}
$slider.animate({
'left': -next * settings.width
}, settings.animationDuration, function () {
if (next === 0) {
slidePosition = slideCount - 2;
$slider.css({
'left': -slidePosition * settings.width
});
} else if (next === slideCount - 1) {
slidePosition = 1;
$slider.css({
'left': -settings.width
});
} else {
slidePosition = next;
}
animating = false;
});
}
在“left:-settings.width”的例子中我尝试过改为+而不是减去只有这看起来不起作用......