[jQuery] Animated Menu

2006-10-19 Thread Steve Urmston
Hi folksI've been trying to build a menu where an image follows to match the hovered linkExample: http://clearbar.co.uk/navtest.htmlProblem is the animate effects queue up, thus moving mouse fast can stack up pretty high. Anyone know how I could get around this, or think of a better way to achieve

Re: [jQuery] Animated Menu

2006-10-19 Thread Armand Datema
mm why not attach the imag to the mousemovement ? Armand On 10/19/06, Steve Urmston [EMAIL PROTECTED] wrote: Hi folks I've been trying to build a menu where an image follows to match the hovered link Example: http://clearbar.co.uk/navtest.html Problem is the animate effects queue up,

Re: [jQuery] Animated Menu

2006-10-19 Thread Adrian Sweeney
Title: Message with out looking into your code and just looking at the effect I suggest. Start by clearing the animation path on every mouse over, then build a new animation to move from the current to the new position should so if you had 5 steps in your anim and 4 links 1-4 then if

Re: [jQuery] Animated Menu

2006-10-19 Thread Dan Atkinson
Something like: http://jquery.com/docs/Plugins/limitQueue/ This allows you to limit the queue length. Steve Urmston wrote: Hi folks I've been trying to build a menu where an image follows to match the hovered link Example: http://clearbar.co.uk/navtest.html Problem is the animate

Re: [jQuery] Animated Menu

2006-10-19 Thread Steve Urmston
Hi againCan anyone tell me now to clear (stop) all animation on an object?cheers,steveOn 10/19/06, Adrian Sweeney [EMAIL PROTECTED] wrote: with out looking into your code and just looking at the effect I suggest. Start by clearing the animation path on every mouse over, then build a

Re: [jQuery] Animated Menu

2006-10-19 Thread Steve Urmston
Hi, just spotted the limit queue length post, works a charm. Thanks Danhttp://jquery.com/docs/Plugins/limitQueue/ On 10/19/06, Adrian Sweeney [EMAIL PROTECTED] wrote: with out looking into your code and just looking at the effect I suggest. Start by clearing the animation path on

Re: [jQuery] Animated Menu

2006-10-19 Thread Abdur-Rahman Advany
*Subject:* [jQuery] Animated Menu Hi folks I've been trying to build a menu where an image follows to match the hovered link Example: http://clearbar.co.uk/navtest.html Problem is the animate effects queue up, thus moving mouse