Touchmove指针事件:没有CSS在Android 4.4 / ChromeView的Chrome上不起作用

当触摸点位于触摸表面上时,将触发touchstart事件。使用addEventListener()了touchmove指针的事件-

overlay.addEventListener('touchstart', function(ev){
   ev.preventDefault();
});

在这里,我们也使用了该preventDefault()方法。该preventDefault()方法可防止浏览器执行默认操作。