如何检查jQuery Cycle是否已启动

时间:2012-01-15 16:42:23

标签: jquery jquery-cycle

我有这些上一个/下一个与jQuery Cycle的功能相关的元素,但是我不想在没有启动插件的情况下显示按钮(即幻灯片太少)。我查看了“选项”页面(http://jquery.malsup.com/cycle/options.html),但我似乎无法找到对此的引用。

$('#content ul').cycle({ 
  fx: 'scrollHorz',
  speed: 750,
  prev: '#previous',
  next: '#next',
  timeout: 4000
    "onInit.function() / conditional statement" {
      $('#previous').fadeIn();
      $('#next').fadeIn();
    });
});

1 个答案:

答案 0 :(得分:3)