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 onn kwicks from left to
right. I am sincerely working on getting a solution for that. If u find a
solution, then lemme know.

-GTG


On 8/18/07, Cybolic <[EMAIL PROTECTED]> wrote:
>
>
> 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 :)
>
> By the way, I have a kwick plugin in action at http://mannequinballs.dk
> (plugin at http://untied.dk/mb/jquery.kwick.js) if you'd like to see
> how I handled the case.
>
> - Christian Dannie
>
> On Aug 18, 12:03 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote:
> > 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 jkwick and
> lavalamp
> > plugin that i was working on...
> >
> > I just wish u saved me all the hardwork by sending this message on
> > wednesday....
> >
> > Anyways, even though i thought i found the solution, i wasnt confident
> if
> > that was the right solution, but now u confirmed it, and thanks a ton.
> >
> > When i whip out a small utility plugin outta this, i will be glad to add
> you
> > as co-author. ;-)
> >
> > -GTG
> >
> > 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($('#animationElement').get(0), "fx");
> >
> > > You can of course define a helper for it like so:
> >
> > > $.fn.stop = function(){
> > >    this.each(function(){
> > >        $.dequeue(this, "fx");
> > >    });
> > >    return this;
> > > };
> >
> > > - now you can just do: $('#animationElement').stop();
> >
> > > This should really be added to the documentation, or given a shortcut.
> > > If anyone would do this, or tell me how to do it, that'd be great.
> >
> > > Cheers,
> > > Christian Dannie
> >
> > > On Aug 4, 6:40 am, "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
>
>

Reply via email to