Skip to content

Instantly share code, notes, and snippets.

@neilwong2012
Created November 7, 2018 09:49
Show Gist options
  • Save neilwong2012/8dcbb36625361fd0bd0ff42d3b21dd40 to your computer and use it in GitHub Desktop.
Save neilwong2012/8dcbb36625361fd0bd0ff42d3b21dd40 to your computer and use it in GitHub Desktop.
阻止iphone默认橡皮筋效果
//阻止默认的处理方式(阻止下拉滑动的效果)
document.body.addEventListener('touchmove', function (e) {
e.preventDefault();
}, {passive: false});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment