sonu
sonu

Reputation: 61

Pinching for zoomin and zoomout of an image

I am trying to add pinching effect for an image..on pinchopen i want to zoomin and on pinchclose i want to zoomout an image. I have tried using jgestures plugin..but it dint work.I am using mobile jquery and html5.it s an ipad application.

any help is appreciated

Thank you

Upvotes: 0

Views: 2823

Answers (2)

laurens peeters
laurens peeters

Reputation: 555

Take a look at zepto

This framework (same syntax as jquery) was developed especially for mobile devices and the beauty of that is that touch events are easily captured.

Example:

 $('#imagelist img').pinchIn(function(){ 
     // some function that makes your images larger
 });

A working example here: http://jsfiddle.net/RUChL/10/

Upvotes: 1

Related Questions