All,
I\'m working on a web app specifically for the iPad, and I\'m using a CSS3 transition to animate a div (move it from left to right).
My class looks like
I was dealing with the same issue, and I found the solution here on SO: iPhone WebKit CSS animations cause flicker
It's as simple as adding
-webkit-backface-visibility: hidden;
and possibly
-webkit-perspective: 1000;
To each animated object. It worked for me, hope this helps for you too