zoomable.js
zoomable.js is a simple way to zoom images with jQuery.
Demos & Examples
http://marando.github.io/zoomable.js
Installation
Manual Installation
Just download zoomable.js and place it within your project's directory. That's it!
With Bower
$ bower install zoomable.js --saveConfiguration
Include both the jQuery and zoomable.js scripts:
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script> <script src="zoomable.min.js"></script>Then call the plugin:
<script type="text/javascript"> $(document).ready(function() { $('img').zoomable(); }); </script>