我最近开始使用Jquery anythingslider,直到现在我都喜欢它。
我只是想知道是否可以将导航按钮(1,2等等)上显示的默认文本更改为某些自定义文本。
感谢。
答案 0 :(得分:0)
$('#slider2').anythingSlider({
// Format navigation labels with text
navigationFormatter : function(index, panel){
return ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'][index - 1];
}
});