[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-25 Thread Paul Bakaus
Jörn, Interface in his current version has this 'stopping' feature you requested, until John releases the new written fx functions. Check it out! Paul On May 24, 10:51 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brandon Aaron wrote: Actualy, the hoverIntent plugin is perfect for this.

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-25 Thread Gordon
Okay, thanks to everyone who responded, I really appreciate the help. Unfortunately this is turning out to be a tougher problem to solve than I first thought. Basically, what needs to happen is 1) All elements that have not been selected and are visible need to fade out. 2) All elements that

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-25 Thread Jörn Zaefferer
Paul Bakaus wrote: Jörn, Interface in his current version has this 'stopping' feature you requested, until John releases the new written fx functions. Check it out! D'oh, should have thought of that. Thanks Paul! -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-25 Thread Gordon
I've been trying to pick apart the fzqueue plugin and the code Erik wrote, but unfortunately I can't figure out how it actually works. It seems that it's based around anarray that's being used as a FIFo structure, but how the code knows that one animation has ended is a total mystery to me. In

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-25 Thread Scott Sauyet
Gordon wrote: In reflection, I think what I need is a queue into which classes of animations can be inserted. All the animation events in a class get executed together, but each class in the queue is executed one after the other. Maybe something like this: animQueue.addClass ('hideClass');

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Benjamin Sterling
@erik, I usually don't say stuff like this but I kinda feel your response warrants it. I don't see anything in Gordon message that required you to come at him like that. Yes, he may have worded a few things here and there a little better, but coming at him like he was demanding you do his work

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
I just updated the test to include an empty selector as well. -- Brandon Aaron On 5/24/07, Brandon Aaron [EMAIL PROTECTED] wrote: Here is a pretty quick and dirty implementation of an fxqueue: http://brandonaaron.net/jquery/plugins/fxqueue/ You can see the test page here:

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Rey Bango
Hi Erik, I know its easy to misinterpret emails at times. God knows that I've done it several times myself. In looking at Gordon's email, I really didn't see anything that would lead me to believe he was demanding our help. I think he's just in a pickle and is desperately seeking guidance

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Gordon
Thanks to everyone who responded, it's really appreciated. I'm looking through the various solutions now. On May 24, 11:47 am, Gordon [EMAIL PROTECTED] wrote: I've already posted on this topic before, but I really am gettign quite desperate as the project deadline looms and I still don't have

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Gordon
Thanks. I was pretty angry at that response, and yes, I might have worded some of it better, but I really was just askign for help looking for a plugin/solution to the problem, that's hardly askign someone else to do my work for me. As for code, I wish I could post it but it's already been made

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Gordon
Brandon, you're a total lifesaver :) On May 24, 2:41 pm, Brandon Aaron [EMAIL PROTECTED] wrote: I just updated the test to include an empty selector as well. -- Brandon Aaron On 5/24/07, Brandon Aaron [EMAIL PROTECTED] wrote: Here is a pretty quick and dirty implementation of an

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Erik Beeson
I'm sorry you didn't like my response. I'm all for not antagonizing people and not being condescending and not inciting a flame war, and I didn't do any of those things. Given that I 1) didn't call him any names or put him down or anything like that, 2) explained how he could implement a

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Glad it is working for you. :) I just updated it to fix the scope of the callback and you can now pass params just like you can with animate. Check the new test page to see. http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html -- Brandon Aaron On 5/24/07, Gordon [EMAIL PROTECTED]

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Chris W. Parker
On Thursday, May 24, 2007 7:01 AM Gordon said: Thanks. I was pretty angry at that response, and yes, I might have worded some of it better, but I really was just askign for help looking for a plugin/solution to the problem, that's hardly askign someone else to do my work for me. Seriously?

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Aaron Heimlich
Pretty cool stuff Brandon! Small typo though: jquery.fxqueue.js line 37: $this = $( args.shift() ); should be var $this = $( args.shift() ); On 5/24/07, Brandon Aaron [EMAIL PROTECTED] wrote: Glad it is working for you. :) I just updated it to fix the scope of the callback and you can

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Ahh good catch! Thanks Aaron. Fixed. I used a semi-colon on the line above instead of a comma. :) -- Brandon Aaron On 5/24/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Pretty cool stuff Brandon! Small typo though: jquery.fxqueue.js line 37: $this = $( args.shift() ); should be var $this

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Jörn Zaefferer
Brandon Aaron wrote: Here is a pretty quick and dirty implementation of an fxqueue: http://brandonaaron.net/jquery/plugins/fxqueue/ You can see the test page here: http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html And I just checked it into the plugins SVN.

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Sure but I wonder what that would look like? Could you provide a more detailed use-case? -- Brandon Aaron On 5/24/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brandon Aaron wrote: Here is a pretty quick and dirty implementation of an fxqueue: http://brandonaaron.net/jquery/plugins/fxqueue/

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Actualy, the hoverIntent plugin is perfect for this. http://cherne.net/brian/resources/jquery.hoverIntent.html -- Brandon Aaron On 5/24/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brandon Aaron wrote: Sure but I wonder what that would look like? Could you provide a more detailed use-case?

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Jörn Zaefferer
Brandon Aaron wrote: Actualy, the hoverIntent plugin is perfect for this. http://cherne.net/brian/resources/jquery.hoverIntent.html Not quite, it has the same queuing issue. But its still in interesting plugin to build the tooltip upon. Thanks. -- Jörn Zaefferer http://bassistance.de