We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第539天 如何禁止手机端页面缩放?
3+1官网
我也要出题
The text was updated successfully, but these errors were encountered:
document.documentElement.addEventListener('touchstart', function (event) { if (event.touches.length > 1) { event.preventDefault(); } }, false); 禁止双指放大
Sorry, something went wrong.
<meta name="viewport" content="user-scalable=no">
No branches or pull requests
第539天 如何禁止手机端页面缩放?
3+1官网
我也要出题
The text was updated successfully, but these errors were encountered: