基本的jquery滑块下一个文本不起作用

时间:2015-03-04 10:33:17

标签: javascript jquery

jQuery('#slider-container').bjqs({
  'animation' : 'slide',
  'width' : 1060,
  'height' : 500,
  'showControls' : false,
  'centerMarkers' : false,
  animationDuration: 500,
  rotationSpeed: 5000
});
jQuery('#quotes-slider').bjqs({
  'animation' : 'slide',
  'width' : 760,
  'height' : 135,
  'showControls' : false,
  'centerMarkers' : false,
  nexttext : 'Next', // Text for 'next' button (can use HTML)
  prevtext : 'Prev',
  animationDuration: 500,
  rotationSpeed: 5000
});

我使用此功能,但我的第二个滑块没有显示下一个和上一个功能,请帮助我

1 个答案:

答案 0 :(得分:0)

您必须使用showcontrols明确设置要显示控件:

jQuery('#quotes-slider').bjqs({
  showcontrols : true,
  nexttext : 'Next', // Text for 'next' button (can use HTML)
  prevtext : 'Prev'
});