Disable IOS Safari Elastic Scrolling

前端 未结 4 2141
心在旅途
心在旅途 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:57

    Based on answer by @umidbek this is how it worked for me

         document.getElementById('content-sections').
             addEventListener('touchmove', function (event) {
                   event.preventDefault();
                   return false;
             });
    

提交回复
热议问题