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

I'm currently developing a web app using html5 and jQuery for iPad Safari. I'm running into a problem wherein large scroll areas cause the elements that are offscreen to appear after a delay when I scroll down to them.

What I mean by that is, if I have a row of images (or even a div with a gradient) that is offscreen, when I scroll down (or up) to it, the expected behavior is for the element to appear on screen as I am scrolling to it.

However, what I'm seeing is that the element does not appear until I lift my finger off the screen and the scroller finishes all its animations.

This is causing a super noticeable problem for me, making the whole thing look choppy, although it is not. I'm guessing the iPad Safari is trying to do something to save memory. Is there any way in which I can prevent this choppy-ness from happening. Additionally, I would also appreciate if anyone can shed light on what the iPad Safari is actually trying to do.

Thanks a ton for all your help, in advance! :-)

Cheers!

EDIT: Complete answer to question. The answer I've selected helped me get to the complete solution:

To the one who answered my question, thank you! Your answer and the article you linked out to gave me a lead to try something with CSS.

So, I was using translate3d before. It produced unwanted results. Basically, it would chop off and NOT RENDER elements that were offscreen, until I interacted with them. So, basically, in landscape orientation, half of my site that was offscreen was not being shown. This is a iPad web app, owing to which I was in a fix.

Applying translate3d to relatively positioned elements solved the problem for those elements, but other elements stopped rendering, once offscreen. The elements that I couldn't interact with (artwork) would never render again, unless I reloaded the page.

The complete solution:

*:not(html) {
    -webkit-transform: translate3d(0, 0, 0);
}

Now, although this might not be the most "efficient" solution, it was the only one that works. Mobile Safari does not render the elements that are offscreen, or sometimes renders erratically, when using -webkit-overflow-scrolling: touch. Unless a translate3d is applied to all other elements that might go offscreen owing to that scroll, those elements will be chopped off after scrolling.

So, thanks again, and hope this helps some other lost soul. This surely helped big time!

share|improve this question
This problem/solution helped me fix an issue with jPanelMenu 1.3 CSS Transforms version, which turned everything on my site invisibie until I added the above snippet. – 75th Trombone Mar 4 at 20:20

2 Answers

up vote 28 down vote accepted

You need to trick the browser to use hardware acceleration more effectively. You can do this with an empty 3d transform:

-webkit-transform: translate3d(0,0,0)

Particularly, you'll need this on child elements that have a position:relative; declaration (or, just go all out and do it to all child elements).

Not a guaranteed fix, but fairly successful most of the time.

Hat tip: http://cantina.co/2012/03/06/ios-5-native-scrolling-grins-and-gothcas/

share|improve this answer
2  
I tried that as well. Sadly, adding a translate3d is chopping off elements that were being displayed properly before. I also needed hardware acceleration for a couple of objects that were offscreen and had to be animated to "fly in" on screen. I was using jQuery's animate(), which was super slow. I switched over to using hardware acceleration. Although that sped up the animation, it produced erratic results, in the sense that some of the child elements of the parent (animating) div were chopped off. This was not happening when I was using animate(). – codeBearer Apr 25 '12 at 18:26
@Colin Williams you just made my day! :D – Luke May 17 '12 at 15:25
2  
Wow, that is horrible but effective. Thank you. – Tim Down Jun 21 '12 at 11:54
Thank you Colin. It worked. – ajaybc Jan 9 at 4:52
Thanks BIG time! – Dušan Radojević May 22 at 13:10

-webkit-transform: translate3d(0,0,0) works well only for div tags but not working for iframe :( .

For details please visit:

http://cantina.co/2012/03/06/ios-5-native-scrolling-grins-and-gothcas/comment-page-1/ A Useful link for div overflow scroll but not for iframe

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.