0

easyAccordion jquery 插件在打开手风琴项后是否有任何回调函数可以做某事?

我想在图像完全打开后淡入图像标题。

4

1 回答 1

0

This should work just modify the plugin js file:

jQuery(this).find('dt').not('active').click(function(){     
    jQuery(this).activateSlide();
    //begin add
    if (settings.afterSlide) { 
        settings.afterSlide();
    }
    //end add
    clearTimeout(timerInstance.value);
});

then add afterSlide parameter when you define the accordion.

$('#your-accordion-container').easyAccordion({ 
   afterSlide: function() { blah }
});
于 2011-06-05T16:19:34.313 回答