0

在我的幻灯片中,如果单击幻灯片,它将暂停。但我想禁用点击暂停功能,直到一个幻灯片转换(标题幻灯片)之后。现在,只要 DOM 准备好,“#slideshow” div 就可以点击了;对我来说太早了。

我现在拥有的精简版:

$(document).ready(function(){

  $('#slideshow img').toggle(function() {
        $('#slideshow').cycle('pause');
  }, function() {
        $('#slideshow').cycle('resume');
  });

  $('#slideshow').cycle({
        /*options*/
  });

});
4

1 回答 1

1

您可以使用. .toggle_ .click_.toggleafter.cycle

于 2012-12-02T17:21:36.377 回答