如何在jquery中使用IOS safari中的Gestures事件找到捏合或捏合?

时间:2012-04-04 13:19:40

标签: jquery jquery-plugins

我想为IPAD实现Pinch In和Out功能。我一直在使用http://developer.apple.com/library/IOs/#documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html上列出的这些活动。

$('div.mainContainer').live("gesturestart", function(e){
   alert("start " + e.originalEvent.scale);
});
$('div.mainContainer').live("gesturechange", function(e){
   alert("change " + e.originalEvent.scale);
   e.preventDefault();
});

以上代码有效,但无法弄清楚是否有进/出。

P.S。我已经尝试了jGestures但它根本不起作用。