Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using CSS transitions to transition between CSS transformed states (basically transitioning the scale of an element). I notice that when the element is transitioning, the rest of the text on the page (in Webkit) tends to slightly alter its rendering until the transition is done.

Fiddle: http://jsfiddle.net/russelluresti/UeNFK/

I also noticed that this does not occur on my headers, which have the -webkit-font-smoothing: antialiased property/value pair on them. So, I'm wondering, is there any way to have the text maintain its default look (the "auto" value for font-smoothing) and not alter rendering during a transition.

I've tried explicitly setting the text to use the "auto" value, but that doesn't do anything. I should also note that setting font-smoothing to "none" also prevents the rendering blink during transition.

Any help is appreciated.

Edit 1

I should note that I am on OS X. While looking at my test in Chrome on Parallels, I did not see the two different paragraphs behaving differently, so this may be an issue exclusive to Macs.

share|improve this question
what is your chrome version? – Anubhav Saini Sep 19 '12 at 21:10
21. And the Safari version is 6. It happens in both browsers, which makes me think it's Webkit, and not the browser. – RussellUresti Sep 19 '12 at 21:21
both antialiased and aliased paragraphs are exhibiting same behaviour. chrome Version 23.0.1270.0 canary | 21.0.1180.89 m | 5.17 safari – Anubhav Saini Sep 19 '12 at 21:34
I'm guessing you're on the dev release of Chrome. Though, OS may be playing a part in this. I'll edit to the question to note that I am using OSX. – RussellUresti Sep 19 '12 at 21:48
I have absolutely no idea why this works, but adding '-webkit-transform: translateZ(0);' to '.antialiased {} seem to fix it. It even works if you add it to 'p {}'. Since I can't explain why this works it didn't feel right to provide it as an answer. Hope that helps! – Christofer Vilander Sep 20 '12 at 17:42
show 1 more comment

3 Answers

Once again, hardware acceleration makes us add hacks everywhere...

I think I found A solution:

-webkit-transform: translateZ(0px);

Forcing hardware acceleration on the text seems to solve the problem...

share|improve this answer
Tried the font-smoothing and it didn't work. Tried this, it worked perfectly – locrizak Apr 11 at 13:05

To prevent the rendering change you need to set font-smoothing: antialiased (or none).

The browser disabling subpixel font rendering is likely a side-effect of hardware acceleration. When the background you are rendering against is constantly shifting, the text cannot be rendered on a separate layer, as each frame must be checked against all background layers. This could severely degrade performance.

Apple often disable subpixel font-smoothing on their own sites.

share|improve this answer
The problem with setting the font-smoothing to antialiased is that the text does not look like I want it to. I want the visual effect of setting font-smoothing to "auto" (the bolder look) - but when you do this, the text will shift during any transition. So, my goal is to just maintain the bold look of "auto" at all times. – RussellUresti Sep 23 '12 at 4:00
1  
You can work around it by not using hardware acceleration. Use a timer in jQuery and do the the transition by hand (without CSS transition). I am not sure I would recommend it though, as performance and smoothness will be worse. – Henrik Helmers Sep 23 '12 at 8:26
True, I could just use jQuery to animate it... That may be the only solution if there's no other solution. – RussellUresti Sep 24 '12 at 20:07

To prevent text rendering changes due to hardware-acceleration, you can either:

  1. Set all text to -webkit-font-smoothing: antialiased. This means text is thinner and not sub-pixel antialiased.

  2. If you want text which is being affected by hardware-acceleration to be sub-pixel antialiased (the default kind of font smoothing), then putting that text inside an input, without borders and disabled, will keep that sub-pixel antialiased (at least on Chrome on Mac OS X). I have not tested this on other platforms, but if sub-pixel antialiasing is important, you can at least use this trick.

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.