jqueryIntroLoader demopage

counterLoader Animation
exitFx:'slideUp', ease: "easeOutSine", style: 'ocean', delayBefore: 1000, exitTime: 500, animationTime: 1000, onAfter: function() {...}

Back to Demos Index

See page code to learn more!

Animation description

counterLoader Animation
effect:'slideUp', ease: "easeOutSine", style: 'fluoYellow', delayTime: 1000, animationTime: 500, onBefore: function() {...}, onAfter: function() {...}

$("#element").introLoader({

    $("#element").introLoader({

        animation: {
            name: 'counterLoader',
            options: {
                exitFx:'slideUp',
                ease: "easeOutSine",
                style: 'fluoYellow',
                delayBefore: 1000, //delay time in milliseconds
                exitTime: 500,
                animationTime: 1000,
                onAfter: function() {
                    alert('onAfter');
                }
            }
        }

    });

});