当最后一个图像聚焦时,我不想滑动 nivo 滑块。示例
$('#slider').nivoSlider({
manualAdvance: true,
beforeChange: function(){
if(condition){
//do not go to afterChange function
}
},
afterChange: function(){
},
});
我可以阻止滑块滑动吗?