Image with default zoom:

A image to apply the ImageZoom plugin

Example code:

<img id="imageZoom" src="https://picsum.photos/1080/720" alt="A image to apply the ImageZoom plugin"> <script> $(document).ready(function(){ $('#imageZoom').imageZoom(); }); </script>

 

Image with 200% zoom:

A image to apply the ImageZoom plugin <img id="imageZoomExtra" src="https://picsum.photos/1440/1080" alt="A image to apply the ImageZoom plugin"> <script> $(document).ready(function(){ $('#imageZoomExtra').imageZoom({zoom : 200}); }); </script>

 

Image with 300% zoom:

A image to apply the ImageZoom plugin <img id="imageZoomExtraPlus" src="https://picsum.photos/1920/1080" alt="A image to apply the ImageZoom plugin"> <script> $(document).ready(function(){ $('#imageZoomExtraPlus').imageZoom({zoom : 300}); }); </script>

 

Multiple mages with same class:

A image to apply the ImageZoom plugin
A image to apply the ImageZoom plugin
A image to apply the ImageZoom plugin
A image to apply the ImageZoom plugin <img src="https://picsum.photos/1921/1081" alt="A image to apply the ImageZoom plugin" class="zoom-images"> <br/> <img src="https://picsum.photos/1922/1082" alt="A image to apply the ImageZoom plugin" class="zoom-images"> <br/> <img src="https://picsum.photos/1923/1083" alt="A image to apply the ImageZoom plugin" class="zoom-images"> <br/> <img src="https://picsum.photos/1924/1084" alt="A image to apply the ImageZoom plugin" class="zoom-images"> <script> $(document).ready(function(){ var zoomImages = $('.zoom-images'); zoomImages.each(function() { $(this).imageZoom(); }); }); </script>