Created
November 7, 2018 09:49
-
-
Save neilwong2012/8dcbb36625361fd0bd0ff42d3b21dd40 to your computer and use it in GitHub Desktop.
阻止iphone默认橡皮筋效果
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//阻止默认的处理方式(阻止下拉滑动的效果) | |
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