jQuery queue events

后端 未结 3 1054
不思量自难忘°
不思量自难忘° 2021-02-06 09:22

So what I want to do is to coordinate some effects using jQuery for some AJAX calls that I\'m working with. My problem is that the fadeIn for the second div fires at the same ti

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-06 10:15

    That's usually good enough for a quick animation but if you want to queue up a number of effects, you can also utilize the queue() and dequeue() methods like this:

    
    $("#div1").fadeOut();
    $("#div1").queue(function()
    {
       $(this).fadeIn();
       $(this).dequeue();
    });
    $("#div").queue(function() 
    {
       $(this).html("And now I'm sliding up. Wee!");
       $(this).slideUp("slow");
       $(this).dequeue();
    });
    

    Here, queue() adds a function to the object's queue (which doesn't have to be an animation) and dequeue() executes that function.

    See the docs for more information.

提交回复
热议问题