Disabling android's chrome pull-down-to-refresh feature

前端 未结 15 2608
予麋鹿
予麋鹿 2020-12-02 04:20

I\'ve created a small HTML5 web application for my company.

This application displays a list of items and everything works fine.

The application is mainly us

15条回答
  •  广开言路
    2020-12-02 04:51

    I solved the pull-down-to-refresh problem with this:

    html, body {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    

提交回复
热议问题