ghlingjun / pinchzoom

A Javascript library providing multi-touch gestures for zooming and dragging on any DOM element.

Home Page:http://manuelstofer.github.com/pinchzoom/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PinchZoom.js

PinchZoom is a Javascript library providing multi-touch gestures for zooming and dragging on any DOM element.

Usage

Requirements

Initialisation

let el = document.querySelector('#my-id');
let pz = new PinchZoom(el, options);

Options


tapZoomFactor:      Zoom factor that a double tap zooms to. (default 2)
zoomOutFactor:      Resizes to original size when zoom factor is below this value. (default 1.3)
animationDuration:  Animation duration in milliseconds. (default 300)
maxZoom:            Maximum zoom factor. (default 4)
minZoom:            Minimum zoom factor. (default 0.5)
lockDragAxis:       Lock panning of the element to a single axis. (default false)

Events

Pinchzoom emits some custom events you can listen to:


pz_zoomstart  Started to zoom
pz_zoomend    Stopped zooming
pz_zoomupdate Zoom factor updated
pz_dragstart  Started to drag the element
pz_dragend    Stopped to drag the element
pz_dragupdate Drag position updated
pz_doubletap  Resetting the zoom with double-tap

Methods

let pz = new PinchZoom(myElement);

pz.enable(); // Enables all gesture capturing (is enabled by default)
pz.disable(); // Disables all gesture capturing

Troubleshooting

  • If you have issues with invisible images, make sure that the image isn't absolutely positioned. In some cases that will cause trouble.

License

Licensed under the MIT License.

Github Page with demo

https://manuelstofer.github.com/pinchzoom/

About

A Javascript library providing multi-touch gestures for zooming and dragging on any DOM element.

http://manuelstofer.github.com/pinchzoom/

License:MIT License


Languages

Language:JavaScript 99.5%Language:Shell 0.5%