i've been searching a little bit on internet for a jquery plugin letting me to zoom an image.
I found many of them, doing it in several ways, my favorites are those ones that zoom the image in a separate area and not directly the original image.
ex / (one of the many)
But all these plugins seems to work directly on img tag instead i would like to zoom a div with src attribute referring to an image. (The html main structure is given so i cannot change it that much).
Do you know any plugin doing it or do you know how i could do it? (would be better if t works also ojn IE8-9, even if it's not a must) Thanks
i've been searching a little bit on internet for a jquery plugin letting me to zoom an image.
I found many of them, doing it in several ways, my favorites are those ones that zoom the image in a separate area and not directly the original image.
ex http://i-like-robots.github.io/EasyZoom/ (one of the many)
But all these plugins seems to work directly on img tag instead i would like to zoom a div with src attribute referring to an image. (The html main structure is given so i cannot change it that much).
Do you know any plugin doing it or do you know how i could do it? (would be better if t works also ojn IE8-9, even if it's not a must) Thanks
Share Improve this question asked Aug 7, 2013 at 20:14 SgotenksSgotenks 1,7334 gold badges21 silver badges34 bronze badges4 Answers
Reset to default 3Use Zoomooz plugins there are free and simple to use
See Simple Zoom Demo with Zoomooz on jsfiddle
$("#zoom").click(function () {
$(this).zoomTo({
targetsize: 1.0,
root: $(".container")
});
});
I think zoomooz will do what you're looking for. http://jaukia.github.io/zoomooz/
here is a few list of jQuery plugins try it.
http://kvcodes./2014/02/jquery-plugins-for-containerdiv-zoom/
Panzoom can do it as well. Give it a try.