0

我最近开始使用 Jquery anythingslider,直到现在我都很喜欢它。

我只是想是否可以将出现在导航按钮(1,2 等)上的默认文本更改为一些自定义文本。

谢谢。

4

1 回答 1

0

使用navigationFormatter选项

$('#slider2').anythingSlider({
  // Format navigation labels with text
  navigationFormatter : function(index, panel){
    return ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'][index - 1];
  }
});
于 2013-07-25T23:27:16.900 回答