vote up 1 vote down star
1

I already asked here with no luck, but feel free to read it:

http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9

Hmm check out my site:

http://www.crtaci.info/

on top-right position i have search field. When you move your mouse over there small text shows up that says:

Napredna pretraga

Now, for some reason those letters change color to like yellow for very short period of time in ff 3.5 and to some strange color in safari 4.0.2 for win. In ie8, opera and chrome it works just the way it should, white letters stay white during the animation.

Any sugestions?

here is function that do this job ;)

$('#header_search').hover(function() {
 $('#naprednaPretraga').stop({clearQueue:true}).show().animate({"opacity" : 1},500);
}, function(){
 $('#naprednaPretraga').stop({clearQueue:true}).animate({"opacity" : 0},500,function() {
  $('#naprednaPretraga').hide();
 });
});
flag

can't reproduce in FF3.5 – marcgg Sep 4 at 17:16
can't reproduce in FF3.5 – TheVillageIdiot Sep 4 at 17:26
Dont know if it makes any difference but i am using Windows 7 x64 and i didnt test this on any other OS. On that google groups thread user Jules said "Using Vista 64 FF3.0.1 the letters change to yellow as mentioned." sooo maybe its some x64 thingy... :) – GaVrA Sep 4 at 17:30
CAN reproduce on FF3.5, Vista Business 32-bit. – Cory Larson Sep 4 at 17:56

3 Answers

vote up 2 vote down check

I can see what you're talking about. On my machine (Vista Business 32-bit, FF3.5), it appears as though the yellowishness that is present during the fade is due to a combination of the ClearType trying to act on alpha-blended text and that you're fading white text through a blueish background. I know white + blue != yellow, but whatever FF does under the hood when rendering the transparent text, coupled with your OS, and a bazillion other things makes it seem yellow.

When I turn ClearType off on my machine, the yellowish seems to disappear, or is at least far less noticeable than with it on.

I'm afraid that you won't be able to control that with JavaScript code, but I would perhaps try what others have suggested: keep the text visible but fade it in from a blue that matches the background to white.

link|flag
I turned off ClearType on my machine and it disappear! ;) But now all text shown on my monitor is not that good looking... :) At least now i know what the problem is. Thnx! – GaVrA Sep 4 at 18:26
vote up 0 vote down

I can't reproduce the descriped error in ff3.5 and Safari 4.0.3 on Vista. Please post your javascript code, so we can think about possible explanation together. ;)

link|flag
Posted few minutes ago... :) – GaVrA Sep 4 at 17:42
vote up 0 vote down

There is no nice way to fix this, because it has to do with the way Mozilla renders text.

Maybe you can set the text color to the same as the background-color and then animate the color instead?

or...

You could create an image that looks exactly the same and fade it in using opacity.

link|flag
Could you also check js code? I added it few min's ago, maybe i did something hmm wrong? :) – GaVrA Sep 4 at 17:41
There's nothing wrong with your code. Check my reply again... added an optional method to solve this. :) – Mickel Sep 4 at 17:42
"There's nothing wrong with your code." Heh... :) kk, if nothing new comes up i will try some other aproach... But still dont understand how some users report "can't reproduce" and some see this problem in same firefox version... Weird... – GaVrA Sep 4 at 17:47

Your Answer

Get an OpenID
or

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