[jQuery] Re: animation queue ?

2008-01-20 Thread polyrhythmic
On Jan 20, 8:30 am, tlob [EMAIL PROTECTED] wrote: a little tip, maybe it helps: you can put .animate({opacity: 1.0}, 1) to pause a 10s before you animate the next object. Also check the pause plugin! My version updated for jQ 1.2: code.doublerebel.com Charles

[jQuery] Re: animation queue ?

2008-01-19 Thread Alexandre Plennevaux
thanks Erik On Jan 17, 2008 7:39 PM, Erik Beeson [EMAIL PROTECTED] wrote: Check out here: http://erikandcolleen.com/erik/jquery/fxQueue/ Demo: http://erikandcolleen.com/erik/jquery/fxQueue/random.html Or here: http://brandonaaron.net/jquery/plugins/fxqueue/ Demo:

[jQuery] Re: animation queue ?

2008-01-17 Thread KidsKilla .grin! wuz here
try this: $.fn.animateByOrder = function(params, duration, easing, callback){ var i = -1; var arr = this; if($.isFunction(easing)) { callback = easing; easing = null; } (function(){ if(arr[++i])

[jQuery] Re: animation queue ?

2008-01-17 Thread Erik Beeson
Check out here: http://erikandcolleen.com/erik/jquery/fxQueue/ Demo: http://erikandcolleen.com/erik/jquery/fxQueue/random.html Or here: http://brandonaaron.net/jquery/plugins/fxqueue/ Demo: http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html --Erik On 1/17/08, Alexandre Plennevaux