Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

on many sites, such as http://www.clearleft.com, you'll notice that when the links are hovered over, they will fade into a different color as opposed to immediately switching, the default action.

I assume JavaScript is used to create this effect, does anyone know how?

share|improve this question
I cannot reproduce this in Iceweasel 3.5. Neither can I see any JS which does this. maybe they use some new, fancy CSS styles? I notice for example the -webkit-transition attribute on links, but don't on hovered links for some strange reason. – Emil Vikström May 15 '11 at 12:22
Thank you. Now, I understand how to make hover links, it's just that I'm trying to figure out how to create a smoother effect for my hover links. – user734409 May 15 '11 at 12:36

3 Answers

up vote 42 down vote accepted

Nowadays people are just using CSS3 transitions because it's a lot easier than messing with JS, browser support is reasonably good and it's merely cosmetic so it doesn't matter if it doesn't work.

Something like this gets the job done:

a {
  color:blue;
  /* First we need to help some browsers along for this to work.
     Just because a vendor prefix is there, doesn't mean it will
     work in a browser made by that vendor either, it's just for
     future-proofing purposes I guess. */
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
}
a:hover { color:red; }

You can also transition multiple CSS properties with different timings and easing functions be separating each declaration with a comma, like so:

a {
  color:blue; background:white;
  -o-transition:color .2s ease-out, background 1s ease-in;
  -ms-transition:color .2s ease-out, background 1s ease-in;
  -moz-transition:color .2s ease-out, background 1s ease-in;
  -webkit-transition:color .2s ease-out, background 1s ease-in;
  /* ...and now override with proper CSS property */
  transition:color .2s ease-out, background 1s ease-in;
}
a:hover { color:red; background:yellow; }

Demo: jsfiddle.net/xejsM/52

share|improve this answer
Thank you, this works very well! – user734409 May 15 '11 at 13:27
works in Chrome, Safari, Firefox, Opera - but fails in IE9. – Andrei Cristof Dec 1 '12 at 22:21
@AndreiCristof: Luckily works in IE10 though! No vendor prefix required either (which is weird). – Marcel Dec 1 '12 at 23:16

You can do this with JQueryUI:

$('a').mouseenter(function(){
  $(this).animate({
    color: '#ff0000'
  }, 1000);
}).mouseout(function(){
  $(this).animate({
    color: '#000000'
  }, 1000);
});

http://jsfiddle.net/dWCbk/

share|improve this answer

That is simple css....

<a href="http://example.com">Home</a>

css:

a:hover
{
color:red;
}

Look at the result here:http://jsfiddle.net/Laqqn/6/

share|improve this answer
He wants a transition effect on hover. – dbau Mar 5 at 11:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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