Webkit animations performance on IPad
Do webkit based transformations/animations affect JS performance on the IPad? Is there a separa开发者_如何学Pythonte graphics processor to handle the webkit stuff?
Basically I am developing a program with some simple webkit animations, but a bunch of them, and I think I have to pull out the animations because its making the Ipad slow.
You may check out Thomas Fuchs's article on: Making an iPad HTML5 App & making it really fast
Some of the points he makes are
- Images slow things down immensely– get rid of them
- Avoid text-shadow & box-shadow
- Avoid opacity (interferes with hardware-accelerated rendering)
- Use translate3d, not translate (the latter is not always hard-accelerated)
- Make sure to use non-progressive JPEGs if you want hardware-acceleration
精彩评论