0

我有一个可以很好地点击的手风琴,但我需要它在 3 秒后也可以通过下一张幻灯片。我在这里搜索并找到了一个想法,但似乎无法使其与实际的点击对应物协同工作。任何想法都非常感谢!

/* Part 1 -> Set first to active */
jQuery("#accordionBackground .theSlide:first").addClass('active');
/* Part 2 -> Auto change */
$theNextSlide = jQuery(this).next('.theSlide');
    if($theNextSlide.length==0){$theNextSlide=jQuery('.theSlide:first');}
     $next.find('.theSlide').triggerHandler('click');
},3000);
/* Part 3 -> Manual change */
jQuery("#accordionBackground .theSlide").click(function(){
    jQuery("#accordionBackground .theSlide").not(this).animate({width: "35px"}, {duration:'fast', queue:false});
    jQuery("#accordionBackground .theSlide").not(this).removeClass('active');
    jQuery(this).addClass('active');

    jQuery(this).next('.theSlide').addClass('nextSlide');
    jQuery(this).animate({width: "588px"}, {duration:'fast', queue:false});


});

谢谢,丹

编辑

进一步尝试,但仍然没有运气!->

jQuery(document).ready(function(){
    setTimeout('accordionAutoNext()',3000);
});

function autoNext(){
    $theNextSlide = jQuery(this).next();
    if($theNextSlide.length==0){$theNextSlide=jQuery('.theSlide:first');}
     $next.find('.theSlide').triggerHandler('click');
};
4

1 回答 1

0

找到了!

/* Part 1 -> Set first to active */
jQuery("#accordionBackground .theSlide:first").addClass('active');
/* Part 2 -> Manual change */
jQuery("#accordionBackground .theSlide").click(function(){
    jQuery("#accordionBackground .theSlide").not(this).animate({width: "35px"}, {duration:'fast', queue:false});
    jQuery("#accordionBackground .theSlide").not(this).removeClass('active');
    jQuery(this).addClass('active');

    jQuery(this).next('.theSlide').addClass('nextSlide');
    jQuery(this).animate({width: "588px"}, {duration:'fast', queue:false});
});
/* Part 3 -> Auto change */
var nextAccordion = function(){
    $theNextSlide = jQuery('.theSlide.active').next('.theSlide');
    if($theNextSlide.length==0){$theNextSlide=jQuery('.theSlide:first');}
     $theNextSlide.trigger('click');
};
setInterval(nextAccordion,6000);
/*End accordion */
于 2013-01-31T11:54:08.553 回答