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

This is a funky one. And I'm sure it's webkit related since it only seems to be an issue in Chrome Version 20.0.1132.57 and Safari 5.1.7. I've uploaded a short video to explain the issue because it would be nearly impossible to explain via text.

Video: http://youtu.be/0XttO-Diz2g

Short version: During CSS3 animations, text that is inside a positioned element (absolute or relative) seems to change its antialiasing. It becomes bolder while animations are running.

Note: This is not the same as scaled elements becoming blurry diring an animation. (this issue)

Any thoughts, workarounds, etc?

share|improve this question
The relevant code is in the video, but I'll try to recreate it in jsFiddle sometime soon. – Jeremy Ricketts Jul 22 '12 at 7:31

2 Answers

up vote 10 down vote accepted

Update: My old answer below works but is only a hacky way to resolve the issue. Instead, read this for the reason to why other elements are affected: http://jsbin.com/efirip/5/quiet. In short: an animated element should be placed in its own stacking context by giving it a z-index.

Old answer:

It's WebKit related. Honestly I'm not sure why it does it and I assume it's a bug too. You can prevent it by adding any 3D related CSS3 declaration to any element on the page. Example:

body {
    -webkit-transform: translateZ(0);
}

Or:

body {
    -webkit-backface-visibility: hidden;
}

The presence of these declarations causes WebKit to use hardware acceleration for the animations which prevents the problem you've pointed out.

share|improve this answer
2  
WOW. That worked. How in the world did you figure that out? Well done! – Jeremy Ricketts Jul 21 '12 at 16:51
1  
Just a stab in the dark! – Ian Lunn Jul 21 '12 at 19:59
1  
+1 Excellent answer! – arttronics Jul 22 '12 at 7:34
This also seems to affect the initial anti-aliasing of the fonts. When I set -webkit-font-smoothing: subpixel-antialiased;, these seem to modify the way the font looks. – dmackerman Dec 12 '12 at 20:17
This workaround gives a small scrollbar on right when used along with twitter bootstrap. – johngillow May 10 at 7:22

(Cannot comment) The YouTube video is not available

share|improve this answer

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.