有一种方法可以在init上停止jQuery Cycle插件,而不是稍后在我的代码中从另一个函数启动它吗?
$('#cycle').cycle({
fx: 'fade',
// stop it
});
// than play it
答案 0 :(得分:0)
$('#anotherElement').click(function(){
$('#cycle').cycle({ fx: 'fade', // stop it });
});
答案 1 :(得分:0)
这是:
$('#s1').cycle({timeout:2000});
$('#pauseButton').click(function() {
$('#s1').cycle('pause');
});
$('#resumeButton').click(function() {
$('#s1').cycle('resume');
});