Any way to prevent horizontal scrolling triggering swipe back gesture on OS X Lion Safari?

后端 未结 8 1941
南笙
南笙 2021-01-30 04:09

I am working on a UI that uses horizontal scrolling in a div element (using overflow: scroll). I cannot scroll to the left, because it would start the

8条回答
  •  日久生厌
    2021-01-30 04:29

    Look into the CSS3 style

    -ms-touch-action: none;
    touch-action: none;
    

    This works perfectly for me when the used app is only expected on HTML5 / CSS3 capable browsers.

提交回复
热议问题