user2632190
user2632190

Reputation:

jQuery gallery with zoom in images

I am creating a mobile website and need a gallery zoom the image and move the pictures by touch.

Unfortunately, I could not find anything like it in jQuery, just to ios.

If you know someone like a gallery, I will be very grateful :)

Thank you!

Upvotes: 1

Views: 905

Answers (2)

iCoder
iCoder

Reputation: 1

You can change the width and height using J-Query, making it seem bigger.

$('#photo1').animate({
            width:300,
            height:300
});

You can use Pixi for moving the pictures by touch, it comes with a handful of features and is touch screen compatible.

Upvotes: 0

yeyene
yeyene

Reputation: 7380

There is an iOS like gallery plugin.

DEMO page http://www.photoswipe.com/latest/examples/04-jquery-mobile.html

Author page http://www.photoswipe.com/

Upvotes: 1

Related Questions