[jQuery] Re: stop animation

2007-09-14 Thread Joan Piedra
Looks like we won't need to do this after all :) On 8/19/07, Cybolic <[EMAIL PROTECTED]> wrote: > > > You're absolutely correct John, it does not stop animation, thanks for > clearing that up. > I'm sorry for misleading you guys, I should have tested my claim more > thoroughly. > > To try and make

[jQuery] Re: stop animation

2007-08-19 Thread Cybolic
You're absolutely correct John, it does not stop animation, thanks for clearing that up. I'm sorry for misleading you guys, I should have tested my claim more thoroughly. To try and make up for my mistake, I've packaged John's new code into a plugin and added a skip function that skips the curren

[jQuery] Re: stop animation

2007-08-18 Thread Ganeshji Marwaha
John, i now completely get what u mean... This is actually not stopping animation ;-). :-( we will wait for jquery 1.2 in the meantime... Thanks for letting us know. -GTG On 8/18/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > > Ok, there is no way i can oppose that. You are an authority in w

[jQuery] Re: stop animation

2007-08-18 Thread Ganeshji Marwaha
Ok, there is no way i can oppose that. You are an authority in what u r talking about and i comletely agree with u. I also understand exactly what u mean when u say that... That said, the interesting part is, in the case of my lavalamp plugin http://www.gmarwaha.com/jquery/lavalamp/test/test.html

[jQuery] Re: stop animation

2007-08-18 Thread John Resig
That code doesn't work - it doesn't stop any animations, it only clears the animation queue (stopping any future queued animations). You can't build a true stop animation without modifying jQuery core. Here's a page that demonstrates that code that's going into jQuery 1.2: http://dev.jquery.com/~

[jQuery] Re: stop animation

2007-08-18 Thread Joan Piedra
Ganeshji, Maybe it's on plan to make it happen for 1.2, but It isn't in trunk just yet. Hope to see your plugin soon. On 8/18/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > > yehuda, i dont see it in the trunk... am i missing something... > > -GTG > > > On 8/18/07, Yehuda Katz <[EMAIL PROTECT

[jQuery] Re: stop animation

2007-08-18 Thread Ganeshji Marwaha
yehuda, i dont see it in the trunk... am i missing something... -GTG On 8/18/07, Yehuda Katz <[EMAIL PROTECTED]> wrote: > > stop() is going to be in jQuery 1.2, and I believe it is already in trunk. > > -- Yehuda > > On 8/18/07, Joan Piedra < [EMAIL PROTECTED]> wrote: > > > > Omg,is this in the

[jQuery] Re: stop animation

2007-08-18 Thread Yehuda Katz
stop() is going to be in jQuery 1.2, and I believe it is already in trunk. -- Yehuda On 8/18/07, Joan Piedra <[EMAIL PROTECTED]> wrote: > > Omg,is this in the jquery-core?! O_o > If it is then I won't need to use interface iutil and ifx anymore, yay! > > > On 8/17/07, Cybolic < [EMAIL > PROTECTE

[jQuery] Re: stop animation

2007-08-18 Thread Ganeshji Marwaha
yup, and as mentioned in the prev posts, this will be packaged into a small utility plugin co-authored by myself and Christian Dannie. You can expect a packaged plugin by monday ;-) -GTG On 8/18/07, Joan Piedra <[EMAIL PROTECTED]> wrote: > > Omg,is this in the jquery-core?! O_o > If it is then I

[jQuery] Re: stop animation

2007-08-18 Thread Joan Piedra
Omg,is this in the jquery-core?! O_o If it is then I won't need to use interface iutil and ifx anymore, yay! On 8/17/07, Cybolic <[EMAIL PROTECTED]> wrote: > > > You can start and stop an animation like so: > > // start > $('#animationElement').animate({width: 50}, slow); > > // stop > $.dequeue(

[jQuery] Re: stop animation

2007-08-18 Thread Ganeshji Marwaha
Cool, That seems to look like an extension of my jkwick source. Was jkwick the starting point? :-) Anyways, i guess u r facing the same problem as i am at this point. Initially i had it similar to yours, but the problem is the individual items bump left and right especially when we are hovering on

[jQuery] Re: stop animation

2007-08-18 Thread Cybolic
I've just added an example of how to stop an animation to the jQuery documention's Effect page. No longer will people have to scour jQuery source code to find the answer :P On Aug 18, 12:03 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > Hey Christian, > > This is either a huge co-incidence

[jQuery] Re: stop animation

2007-08-18 Thread Cybolic
Funny how things work sometimes... Sorry for not sending that message sooner, I just stumbled on yours while searching to see if anyone had done a kwick plugin. I'd be glad to be added as co-author, though you found the answer on your own, so you really don't have to, but again, I'd be glad :)

[jQuery] Re: stop animation

2007-08-17 Thread Ganeshji Marwaha
Hey Christian, This is either a huge co-incidence or we are probably born on the same date and time... coz, i spent the full day yesterday to figure out exactly this and was jumping for joy that i found the simplest and the easiest way to stop animation and i started incorporating them into the jk

[jQuery] Re: stop animation

2007-08-17 Thread Cybolic
You can start and stop an animation like so: // start $('#animationElement').animate({width: 50}, slow); // stop $.dequeue($('#animationElement').get(0), "fx"); You can of course define a helper for it like so: $.fn.stop = function(){ this.each(function(){ $.dequeue(this, "fx");

[jQuery] Re: stop animation

2007-08-17 Thread Ganeshji Marwaha
thats wonderful joan... simple and effective how to's are very useful pieces of information. Send us a link after u have posted something. -GTG On 8/17/07, Joan Piedra <[EMAIL PROTECTED]> wrote: > > Hello Ganeshji, > > Nvm the previouse message, I've just seen your work at the lava lamp > plugin

[jQuery] Re: stop animation

2007-08-17 Thread Joan Piedra
Hello Ganeshji, Nvm the previouse message, I've just seen your work at the lava lamp plugin, awesome. It looks like you already use the interface plugin so there isn't a need for me to tell you how to do it ;) Still, I will post a simple howto how to do it, so anyone in the jquery community can ta

[jQuery] Re: stop animation

2007-08-17 Thread Joan Piedra
Hello Ganeshji, I gave interface a try and It deserves it a lot. I'll write a simple howto stop animations and queuing in jquery. You can see an example here. All the navigation animations use it. http://www.justaquit.com/ Cheers, On 8/5/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > > Thanks

[jQuery] Re: stop animation

2007-08-16 Thread serializer
Hi, I've been desperately needing to do this as well :) Thanks for the link, that's awesome! While I'm at it I'd like to extend huge thanks to all jQuery contributors for their very high quality work. --serializer On Aug 6, 3:10 am, eddy <[EMAIL PROTECTED]> wrote: > you can use fx.js of interf

[jQuery] Re: stop animation

2007-08-15 Thread Ganeshji Marwaha
But how does this help in stopping animations? -GTG On 8/15/07, eddy <[EMAIL PROTECTED]> wrote: > > > I find a good plugin jQuery Timers (http://jquery.offput.ca/every/) > > > On 8月6日, 下午12时01分, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > > Thanks eddy... I will try to make them work togethe

[jQuery] Re: stop animation

2007-08-15 Thread eddy
I find a good plugin jQuery Timers (http://jquery.offput.ca/every/) On 8月6日, 下午12时01分, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > Thanks eddy... I will try to make them work together and will let u know how > it goes. > > -GTG > > On 8/5/07, eddy <[EMAIL PROTECTED]> wrote: > > > > > The dem

[jQuery] Re: stop animation

2007-08-05 Thread Ganeshji Marwaha
Thanks eddy... I will try to make them work together and will let u know how it goes. -GTG On 8/5/07, eddy <[EMAIL PROTECTED]> wrote: > > > The demo page is http://interface.eyecon.ro/demos/animate.html > You only need to make jQuery and fx together. > On 8月4日, 下午12时40分, "Ganeshji Marwaha" <[EMA

[jQuery] Re: stop animation

2007-08-05 Thread eddy
The demo page is http://interface.eyecon.ro/demos/animate.html You only need to make jQuery and fx together. On 8月4日, 下午12时40分, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > hi friends, > > is there a way to stop an animation after it has started? any hack that will > make this happen will be us

[jQuery] Re: stop animation

2007-08-05 Thread eddy
you can use fx.js of interface (http://interface.eyecon.ro) On 8月4日, 下午12时40分, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > hi friends, > > is there a way to stop an animation after it has started? any hack that will > make this happen will be useful... > > thanks in advance, > -GTG

[jQuery] Re: Stop animation on the fly. (Stop effect, stop fade, stop slide, etc.)

2007-05-22 Thread Jeffrey Kretz
You can use the interface plugin. http://interface.eyecon.ro/ The ifx.js file, added to your project, opens a number of additional methods, including a stop(). JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pogo Sent: Tuesday, May 22, 2007