jQuery Supersized AfterAnimation

时间:2013-10-14 21:17:35

标签: javascript jquery supersized

我正在尝试在SuperSized jQuery插件上使用afterAnimation事件(文档:http://buildinternet.com/project/supersized/docs.html#theme-after),但无法触发它。

代码(示例):

$.supersized({              
    //Functionality
    slideshow               :   1,
    autoplay                :   1,
    start_slide             :   1,
    stop_loop               :   0,
    random                  :   0,  
    slide_interval          :   3000,
    transition              :   6,
    transition_speed        :   1200,

    // .. removed for clarity

    //Theme Options            
    progress_bar            :   1,  
    mouse_scrub             :   0,
    // This is where i'm trying to call afterAnimation()
    afterAnimation          : function() {
        console.log('blech');
    }}
});

非常感谢任何指导!

1 个答案:

答案 0 :(得分:4)

事实证明我非常接近。

初始化超大后,你可以这样做:

theme.afterAnimation = function() {
    console.log('animate');
};