有没有办法检测或禁用在捏触摸板时发生的桌面游戏变焦。我的意思是缩放文本变得模糊,这不是常规的浏览器缩放。
我试着听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);
});