I found the jQuery.com document on Queue/dequeue is too simple to understand. Can somebody help to explain it a little in more detail? I appreciate it.
feedback
|
The uses of jQuery
|
|
|||
|
|||
|
@idealmachine - As seen in the Ajax Queue example, you can actually attach queue events to an empty object: $({}) – gnarf Dec 15 '10 at 18:07 |
||
|
This summary is incredibly useful. I just finished building a lazy loader for delaying the request for heavy content that's below the bottom of the screen until it's scrolled into view. Using jQuery's queue() made those Ajax requests very smooth (even if you jump straight to the bottom of the page). Thanks! – Jeff Standen Apr 3 '11 at 2:37 |
||
|
It's nice to find out your still updating this for newer versions of jQuery. +1 :) – Shaz Jun 26 '11 at 17:01 |
|
To understand queue method, you have to understand how jQuery does animation. If you write multiple animate method calls one after the other, jQuery creates an 'internal' queue and adds these method calls to it. Then it runs those animate calls one by one. Consider following code.
The 'queue'/'dequeue' method gives you control over this 'animation queue'. By default the animation queue is named 'fx'. I have created a sample page here which has various examples which will illustrate how the queue method could be used. Code for above sample page:
Now you may ask, why should I bother with this queue? Normally, you wont. But if you have a complicated animation sequence which you want to control, then queue/dequeue methods are your friend. Also see this interesting conversation on jQuery group about creating a complicated animation sequence. Demo of the animation: http://www.exfer.net/test/jquery/tabslide/ Let me know if you have still have questions. | ||||
|
feedback
|
|
It allows you to queue up animations... for example, instead of this
Which fades the element and makes the width 100 px at the same time. Using the queue allows you to stage the animations. So one finishes after the other.
Example from http://docs.jquery.com/Effects/queue | |||||||||
feedback
|
Multiple objects animation in a queueHere is a simple example of multiple objects animation in a queue. Jquery alow us to make queue over only one object. But within animation function we can access other objects. In this example we build our queue over #q object while animating #box1 and #box2 objects. Think of queue as a array of functions. So you can manipulate queue as a array. You can use push, pop, unshift, shift to manipulate the queue. In this example we remove the last function from the animation queue and insert it at the beginning. When we are done, we start animation queue by dequeue() function. html:
js:
css:
| ||||
|
feedback
|
|
This thread helped me a lot with my problem, but I've used $.queue in a different way and thought I would post what I came up with here. What I needed was a sequence of events (frames) to be triggered, but the sequence to be built dynamically. I have a variable number of placeholders, each of which should contain an animated sequence of images. The data is held in an array of arrays, so I loop through the arrays to build each sequence for each of the placeholders like this:
This is a simplified version of the script I have arrived at, but should show the principle - when a function is added to the queue, it is added using the Function constructor - this way the function can be written dynamically using variables from the loop(s). Note the way the function is passed the argument for the next() call, and this is invoked at the end. The function in this case has no time dependency (it doesn't use $.fadeIn or anything like that), so I stagger the frames using $.delay. | |||||||||
feedback
|