How to disable rubber band in iOS web apps?

前端 未结 8 1624
夕颜
夕颜 2020-12-01 00:50

This:

$(\'body\').on(\'touchmove\', function(e) { e.preventDefault(); });

Works, but will disable scrolling throughout the whole page, whic

8条回答
  •  一向
    一向 (楼主)
    2020-12-01 01:42

    Just add a -webkit-overflow-scrolling: auto; to the div you want to prevent from bouncing

提交回复
热议问题