Image Zoom Effect using JavaScript

This is simple coding for Image Zoom Effect using JavaScript. Kindly hover the cursor over the image to view the zoom effect. Hope you find this useful to your project.
Creating Markup
This simple HTML source code contains the list of an image where the user hovers the cursor to view the zoom effect.
  1.         <div id="container">
  2.         <img id="zoom_zoom" src="small/1.jpg" data-zoom-image="large/1.jpg"/>
  3.         <div id="gallery_image">
  4.             <a href="#" data-image="small/1.jpg" data-zoom-image="large/1.jpg">
  5.                 <img id="zoom_zoom" src="thumb/1.jpg" />
  6.             </a>
  7.             <a href="#" data-image="small/2.jpg" data-zoom-image="large/2.jpg">
  8.                 <img id="zoom_zoom" src="thumb/2.jpg" />
  9.             </a>
  10.             <a href="#" data-image="small/3.jpg" data-zoom-image="large/3.jpg">
  11.                 <img id="zoom_zoom" src="thumb/3.jpg" />
  12.             </a>
  13.             <a href="#" data-image="small/4.jpg" data-zoom-image="large/4.jpg">
  14.                 <img id="zoom_zoom" src="thumb/4.jpg" />
  15.             </a>
  16.         </div>
  17.     </div>
As you can see in the image below. result
Creating Script for the Zoom Effect
  1. $(document).ready(function(){
  2.    
  3.         $("#zoom_zoom").elevateZoom({
  4.                 gallery:'gallery_image',
  5.                 cursor: 'pointer',
  6.                 galleryActiveClass: 'active',
  7.                 imageCrossfade: true,
  8.                 tint:true,
  9.                 tintColour:'#FF9999',
  10.                 tintOpacity:0.5,
  11.         });
  12.         $("#zoom_zoom").bind("click", function(e) {
  13.                 var ez = $('#zoom_zoom').data('elevateZoom');  
  14.                 $.fancybox(ez.getGalleryList());
  15.                 return false;
  16.         });
  17. });
Hope that this tutorial will help you a lot. So what can you say about this work? Share your thoughts in the comment section below or email me at [email protected]. Practice Coding. Thank you very much.

Add new comment