Disable IOS Safari Elastic Scrolling

前端 未结 4 2140
心在旅途
心在旅途 2021-02-13 12:32

I am writing a web app in HTML and JavaScript for use on an iPhone. What I would like to achieve is preventing the app from elastic scrolling (scrolling past the pages extents a

4条回答
  •  天涯浪人
    2021-02-13 12:51

    So when you have scroll content in body & want to disable elastic scroll use:

    let scrollToTop = $(window).scrollTop();
    if (scrollToTop < 0) {
       // do something here
    }
    

    Because elastic scroll will always have negative value

提交回复
热议问题