IMAGE ZOOM EFFECT-2

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'></script>
<script src='https://github-codes.github.io/mycodes/javascripts/image-zoom.js'></script>
<img id="zoom_07" src="https://i.imgur.com/7X4wjWSm.jpg" width="304" height="190" data-zoom-image="https://i.imgur.com/7X4wjWS.jpg"/>
<img id="zoom_07a" src="https://i.imgur.com/rcivwQJm.jpg" width="304" height="190" data-zoom-image="https://i.imgur.com/rcivwQJ.jpg"/>
<img id="zoom_07b" src="https://i.imgur.com/fiVofHIm.jpg" width="304" height="190" data-zoom-image="https://i.imgur.com/fiVofHI.jpg"/>
<script>
$("#zoom_07").elevateZoom({ zoomType      : "lens", lensShape : "round", lensSize : 200 });
$("#zoom_07a").elevateZoom({ zoomType    : "lens", lensShape : "round", lensSize : 200 });
$("#zoom_07b").elevateZoom({ zoomType    : "lens", lensShape : "round", lensSize : 200 });
</script>