Native-like momentum-scrolling on BODY in iOS webapp

前端 未结 2 589
北恋
北恋 2021-02-13 03:12

According to this article http://johanbrook.com/browsers/native-momentum-scrolling-ios-5/ one should be able to enable native-like momentum-scrolling like this:

         


        
相关标签:
2条回答
  • 2021-02-13 03:43

    Unfortunately, iOS doesn't have full support for fixed. http://caniuse.com/css-fixed

    0 讨论(0)
  • 2021-02-13 03:53

    Use a Div with a set height, and perform the scroll with touchscroll on the div. The header and footer can remain as fixed divs at an the same level in the DOM.

    <div id="fixedheader"></div>
    

    0 讨论(0)
提交回复
热议问题