ZOOM - jQuery photo gallery plugin

Features:

How to use

Include the stylesheet and javascript into the header and add the images (class gallery required, style as desired):

<!DOCTYPE html>
<html dir="ltr" lang="en-US">
  <head>
    
    <link rel="stylesheet" href="css/zoom.css" media="all" />
    <script src="js/jquery-2.0.3.min.js"></script>
    <script src="js/zoom.min.js"></script>
    
  </head>
  <body>

  <div class="gallery">
    <div><a href="path/to/large1.jpg"><img src="path/to/thumbnail1.jpg" /></a></div>
    <div><a href="path/to/large2.jpg"><img src="path/to/thumbnail2.jpg" /></a></div>
    <div><a href="path/to/large3.jpg"><img src="path/to/thumbnail3.jpg" /></a></div>
    <div><a href="path/to/large4.jpg"><img src="path/to/thumbnail4.jpg" /></a></div>
  </div>

  </body>
</html>