vote up 1 vote down star

Hey,

I am trying to fade in a

on mouseover and fade out on mouseout:

  $("p.follow").mouseover(function(){
    	$(this).fadeTo("slow", 1.00);
})
$("p.follow").mouseout(function(){
    	$(this).fadeTo("fast", 0.50);
})

If you go to ryancoughlin.com and on the right side, if you go over it you will see what I mean, it is almost as if it is stuck and keeps fading in.

Any ideas?

Thanks,

Ryan

flag

68% accept rate

4 Answers

vote up 4 vote down check

Try this:

$("p.follow").hover(function()
   {
      $(this).stop().fadeTo("slow", 1.00);
   },
   function()
   {
      $(this).stop().fadeTo("fast", 0.50);
   });

Two key differences: I use the jQuery hover event to associate mouseover and mouseout event handlers such that child elements won't result in confusing behavior, and i use the stop() function to prevent animations from overlapping and canceling each other out.

link|flag
vote up 0 vote down

A mouseover-event is fired every time your mouse moves over the element. Since effects are executed sequentially and a mouseover is fired pretty frequently, you get a lot of effects that have to be executed "slow".

What you probably want is the hover-event, which is only executed once for each entry.

link|flag
vote up 0 vote down

Very interesting. I never knew that, I will keep this in mind for further uses! So the stop is the main important part? For it does not overlap?

Ryan

link|flag
stop() is key, because otherwise you could have a fade-out animation running before the fade-in had completed, and they would just stomp on each other and never complete. – Shog9 Nov 23 '08 at 21:33
vote up 1 vote down

It may be worth looking at the hoverintent plugin, this basically uses a little setTimeout so that it wont activate if a user quickly moves the mouse across the element instead. Easy to code yourself but worth a look.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.