有没有一种方法可以检测或禁用在捏住触摸板时发生的桌面 Safari 缩放。我的意思是文本变得模糊的缩放,而不是常规的浏览器缩放。
我尝试收听 touchstart,gesturestart 没有成功。
这是一个 jsFiddle 来测试它:http: //jsfiddle.net/QW9uG/
['gesturestart', 'mousewheel', 'touchstart', 'click'].forEach(function(type){
var node = document.body;
node.addEventListener(type, function(){
console.debug(type, arguments);
}, false);
console.debug('listening for ', type, 'on', node);
});