1.自动下滚到底
window.onload = function () {
setTimeout(function () {
window.scrollTo(0, 200);
}, 0);
};
2.阻止双指放大
- 在 index.html 里加上以下代码块即可
try {
// 禁用双指操作
document.addEventListener("gesturestart", function(event) {
event.preventDefault();
});
} catch (error) {}
3.阻止双击放大
-
只需要用到 CSS 的
touch-action属性(文档developer.mozilla.org/zh-CN/docs/… ) -
用法
选择器{
touch-action:manipulation;
}