Disable scrolling in all mobile devices

后端 未结 13 1141
粉色の甜心
粉色の甜心 2020-11-28 03:18

This sounds like there should be a solution for it all over the internet, but I am not sure why I cannot find it. I want to disable Horizontal scrolling on mobile devices. B

13条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 04:20

    cgvector answer didn't work for me, but this did:

    document.body.addEventListener('touchstart', function(e){ e.preventDefault(); });
    

    I wouldn't leave it just like that, a smarter logic is needed to select when to prevent the scrolling, but this is a good start.

    Taken from here: Disable scrolling in an iPhone web application?

提交回复
热议问题