在Safari桌面上检测或禁用多点触控手势缩放

时间:2013-02-28 11:55:33

标签: javascript safari touch

有没有办法检测或禁用在捏触摸板时发生的桌面游戏变焦。我的意思是缩放文本变得模糊,这不是常规的浏览器缩放。

我试着听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);
});

0 个答案:

没有答案