注意请在移动端查看效果
要求
jQuery or Zepto.
ECMA 5 support
初始化
new PinchZoom($('#your-element'), options);
选项
tapZoomFactor: The zoom factor a double tap zooms to. (default 2) zoomOutFactor: Resizes to original size when zoom factor is below the configured value. (default 1.3) animationDuration: The animation duration in milliseconds. (default 300) maxZoom: The maximum zoom factor. (default 4) minZoom: The minimum zoom factor. (default 0.5) lockDragAxis Locks panning of the element to a single axis. (default false)
事件
Pinchzoom 发出一些自定义的事件 pz_zoomstart Started to zoom pz_zoomend Stopped zooming pz_dragstart Started to drag the element pz_dragend Stopped to drag the element pz_doubletap Resetting the zoom with doubletab
方法
enable: Enables all gesture capturing (default) disable: Disables all gesture capturing
自定义事件怎么写啊?我写了没反应
$('.pinch-zoom').each(function() { new RTP.PinchZoom($(this), { pz_zoomstart: function() { alert(3); } }); });回复