我想为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但它根本不起作用。