I discovered this technique while building a little ios game recommendation page, here is the prototype: hitme.railsplayground.net/hecate/ The basic functionality of the page is to move left or right exposing more game recommendations as the user swipes through the list, pulling more to display based on their ratings.
I was getting a little cocky with the ease of use and awesomeness of jquery templating and started throwing in all kinds of unnecessary silliness like CSS3 cube transitions, an HTML5 loading indicator and then I found the straw that broke the browser’s back: trying to apply a -webkit-transition:left 0.3s to an element containing over 400 child elements resulted in that element totally failing to be rendered. This doesn’t happen on desktop browsers but I was able to reliably reproduce this on an iphone 3GS. The relatively small number of elements involved which were able to totally cripple display make this a very powerful weapon in your arsenal. Go forth and destroy!
