如何判断动画功能完整并展示一些东西?

时间:2010-04-06 15:23:27

标签: jquery complete animated

这样的代码:

$(".hide").click(function(){
    $(".online-contact").animate({width: 'toggle',height: '100%'}, "fast");         
    $(this).hide();
    $(".show-class").show();
})

我想在动画功能完成时用show-class类显示div,我能做什么?

2 个答案:

答案 0 :(得分:3)

你可以尝试:

$(".hide").click(function() {
    $(".online-contact")
        .animate({
            width: 'toggle',
            height: '100%'
        }, "fast",
        function() {
            // your code goes here..
            // this code will execute after the animation ended
        }); 

答案 1 :(得分:1)

Animate可以进行回调,这是一个在动画完成时运行的函数,如下所示:

$(".hide").click(function(){ $(".online-contact").animate({width: 'toggle',height: '100%'}, "fast", function() {$(".show-class").show();});
 $(this).hide(); })