We've been testing with CSS3 on iPhone's (3G + 4) and we came on some performance issues.
We got a Webapp that show's a profile picture + extra information.
We have a box (default we hide the box for 90%):
border: 1px solid #aaa;
font-size: 11px;
text-shadow: 0 1px 0 rgba(0,0,0,.75);
box-shadow: inset 0 0 40px rgba(255,255,255,.8);
-webkit-box-shadow: inset 0 0 40px rgba(255,255,255,.8);
-moz-box-shadow: inset 0 0 40px rgba(255,255,255,.8);
-moz-border-radius: 0 10px 0 0;
-webkit-border-radius: 0 10px 0 0;
border-radius: 0 10px 0 0;
And we have 3 icons with a label underneath:
background: rgba(0,0,0,.5);
padding: 3px;
font-weight: bold;
text-shadow: 0 1px 0 #000;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
Now, if we animate (make it move to an higher Y position) te box, the animation is realy slow, not even smooth.
What can we do to make the animation smooth?
PS. on an iPhone 4S is runs quit nice (because of the better CPU)