[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread pixeline
thanks that 's excellent! i'll see if i can turn that into a plugin, maybe as an optional argument to the show function On 17 déc, 04:22, wick [EMAIL PROTECTED] wrote: Here's the method I use on my site (modified a bit to fit your example), there's probably a better way, but my version is

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Alexandre Plennevaux [mailto:[EMAIL PROTECTED] now, it was suggested by my mate that they appear one after the other, according to, say, their order of appearance in the html markup. Not sure of your markup but maybe the Cycle plugin? jim

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Erik Beeson
A google search for jquery fxqueue also turns up these: http://erikandcolleen.com/erik/jquery/fxQueue/ http://brandonaaron.net/jquery/plugins/fxqueue/ Not sure if they'll work with newer versions of jQuery, but maybe worth checking out. --Erik On 12/17/07, pixeline [EMAIL PROTECTED] wrote:

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-16 Thread sawmac
$('div.items).show(slow); of course i could use the callback of each show so taht the next one only start when current is finished animating, but i don't know in advance the amount of divs there will be so i'm kind of stuck on how to achieve that. I think the FX Queues extension can do

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-16 Thread wick
Here's the method I use on my site (modified a bit to fit your example), there's probably a better way, but my version is pretty clean: function showitems(i,max) { if (i = max) { $('div.items:eq('+i+')').show('slow',function() { showitems(+ +i,max) }); } } $(function() {