Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple html5 page with 3 divs inside. If I only allow the 3rd div to scroll i get some aweful lags and touch responsivness is weird. Any ideas?

<html>
<body style="overflow:hidden">
 <div>
    BLA1
 </div>
 <div>
   BLA2
 </div>
 <div style="overflow: auto;">
    BLA3 overflow is here
 </div>
</body>
</html>
share|improve this question

2 Answers

up vote 8 down vote accepted

Ok, thanks to the iScroll4 plugin I got a new trick for iPad Web Developpers. Apparently it works way better with this CSS :

overflow-y: scroll;
overflow-x: hidden; 
-webkit-overflow-scrolling: touch;

While this lag like hell :

overflow: auto;
share|improve this answer
Please vote for this solution :) – TecHunter Jun 6 '12 at 11:14
1  
Is there any way to keep elements positioned absolute or relative from disappearing for a second or two when scrolling with this approach? – jasonmerino Jun 8 '12 at 23:52
@jasonmerino it's a known issue with fixed elt scrolling. You could override the CSS of the elements right after the scroll. never tried though. if you find please comment here – TecHunter Jun 12 '12 at 14:06

Use iscroll 4 http://cubiq.org/dropbox/iscroll4/examples/simple/ this will give best solution

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.