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.

As part of a project that needs to support mobile devices, I have been working on mimicking the iPhone toggle control using CSS3. I have the look and feel of the element pretty much there, and am using CSS3 transitions to animate its state change.

When I have the element itself on a page with nothing else, the transition is relatively smooth on iOS. However, when I combine it with other CSS elements on a page, the result in iOS is laggy as anything. It's slightly better than a raw jQuery animation, but not much.

I've set up two test pages to demonstrate what I mean (the difference is hardly noticeable in a regular browser):

Toggle Control on its own > http://ben-major.co.uk/labs/iPhone%20UI/ios_toggle.html

Combined with other elements > http://ben-major.co.uk/labs/iPhone%20UI/

I am looking for any advice on speeding up the transition in mobile devices. What could be the factors that are slowing down its performance on the full page test?

Any advice and comments welcome.

share|improve this question
Only the first example worked on IOS Simulator. – chovy Oct 26 '11 at 21:33

2 Answers

up vote 9 down vote accepted

You have to be careful with this, as it can alter the z-index of the element it's applied to, but adding:

-webkit-transform-style: preserve-3d;

To the element you're applying the transition to, can speed animation up considerably, as it forces the hardware to use hardware acceleration for the animation.

If you do encounter layout bugs, you can just switch your 2d transitions to 3d values, so:

-webkit-transform: translate(100px, 100px)

becomes:

-webkit-transform: translate3d(100px, 100px, 0px)

You can see a demo of how this helps speed things up, at http://stickmanventures.com/labs/demo/spinning-gears-Chrome-preserve-3d/#

If after applying this to the element, you see it or elements around it blink upon use, then use:

-webkit-backface-visibility: hidden;

To the element, and that should correct the problem.

These tips have helped me to produce fast, efficient CSS transitions, hope they help. :)

share|improve this answer
Thanks for the tips, Dave. There was a slight improvement by forcing 3D transforms, but nothing too great I'm afraid. I've uploaded the files to the links in my original post. Any more thoughts on how I can speed it up? It's still too laggy for my liking. – BenM Oct 27 '11 at 16:35
-webkit-transform-style: preserve-3d; gave my css3 transition a HUGE performance boost – eivers88 Dec 5 '12 at 23:35

Chrome has recently improved the 2D transition performance, and now this trick is no longer needed. The best thing is that if removed the translate3d you'll no longer have those z-index problems! Use the test to prove. http://stickmanventures.com/labs/demo/spinning-gears-Chrome-preserve-3d/

share|improve this answer
Still makes a difference in Safari, but it would be nice to not have to use this trick again. – Dave Mar 19 '12 at 16:34

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.