Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since I dont have either of these devices handy to test, which method would be faster on an iphone/ipad?

One large canvas (overlayed over a bg of the same size), that is cleared, and has new pixel data drawn to it each frame, at a certain position

or

A small canvas that updates each frame, contained in a div that is animated across a background

share|improve this question

2 Answers

up vote 2 down vote accepted

As it turns out iphone/ipad aren't even capable of running this small animation either way. I will have to look at alternative solutions for mobile/tablet devices.

share|improve this answer

Yes, I've found the iPhone too slow in all my canvas experiment. Even moving a simple div around (CSS3 styled, no canvas) is barely accettable ( my test with the new motion API: http://www.omiod.com/i.htm )

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.