Phonegap vertical scroll

前端 未结 6 1385
你的背包
你的背包 2021-02-06 15:10

I am building a phonegap app for ios and have vertical scroll issue. There appears to be a few pixels scroll in the webview even without any content and this is affecting my abs

6条回答
  •  梦毁少年i
    2021-02-06 15:48

    For a latest answer (as of 2016), this solution was the most effective (smooth scrolling) for me in Cordova iOS.

    .element {
      overflow-y: scroll; /* has to be scroll, not auto */
      -webkit-overflow-scrolling: touch;
    }
    

    Source: https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/

提交回复
热议问题