jQuery.ImageView

This is my next jQuery plugin which can help you to create image viewing in your site more useful. View demo!

Features

  • View images
  • Image zoom

Code excample

1
2
3
<div id="imageView_container">
    <img src="photos/image-800x500.jpg" rel="photos/image-1680x1050.jpg" />
</div>
1
2
3
4
5
<script type="text/javascript">
$(function() {
    $('#imageView_container').imageView({width: 800, height:500});
});