有什么办法可以使用“之前”回调来禁用幻灯片?幻灯片使用 nex / prev 选项“手动”工作,所以我想禁用这些。我尝试删除 id 属性,但这并没有禁用按钮。
也许 forwardFlag 选项可以用于此?
$('#slider-form').cycle({
fx: 'fade',
speed: 'fast',
prev: '#prev',
next: '#next',
width: 940,
fit: 1,
before: onBefore,
after: onAfter,
nowrap: 1,
timeout: 0
});
function onBefore(currSlideElement, nextSlideElement, options, forwardFlag) {
//condition is not met: disable next/prev animation
//condition is met: enable navigation
}