我想通过课程.image
将其设为div,并使用ID #next
与jQuery Cycle Plugin进行幻灯片展示。我尝试了下面的代码,但只有#next
正在运行,而不是两个值。有没有办法在这个插件中为next
和prev
值设置两个值?谢谢!
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'fade',
timeout: 0,
next: '.image' && '#next',
prev: '#prev',
speed: 500
});
});
答案 0 :(得分:0)
我自己想到了!这是其他好奇的语法:
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'fade',
timeout: 0,
next: '.image, #next',
prev: '#prev',
speed: 500
});
});