在触控设备上禁用单手指拖动可以通过以下方法实现:
document.addEventListener('touchmove', function(event) {
if (event.touches.length === 1) {
event.preventDefault();
}
}, { passive: false });
touch-action
属性来禁用单手指拖动。body {
touch-action: none;
}
这样设置后,触摸设备上的单手指拖动行为将被禁用。
这种禁用单手指拖动的方法适用于以下场景:
body
元素或者包含整个页面内容的容器元素。腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云