🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A simple, lightweight, unobtrusive jQuery image zoom plugin for creating a magnifying glass effect to enlarge part of an image.

Magnifying-Glass image-zoom

Documentation

As the name suggests, this plugin simulates image projection. It works by using two similar images for the original and the projection. See the demo

Image Projection Diagram

Whenever the surface is hovered, the viewfinder and the projection come up. Everything covered by the viewfinder is shown as the projection.

##Sample usage

###HTML

Include the scripts and stylesheet.

<link rel="stylesheet" href="stylesheets/image-projection.css">  <script src="javascripts/jquery.min.js"></script> <script src="javascripts/image.projection.js"></script>

Structure the container and image. The image class is important, this image will be the origin image and contains url for projection.

<div class="wrap">   <img src="images/sample-halved.jpg" class="ip-source-image" data-pimg="images/sample.jpg" /> </div>

###Javascript

Initiate the projection.

$(".wrap").imageProjection();

Destroy the projection.

$(".wrap").imageProjection("destroy");

##Development

Install dependencies

npm install

This will build the scripts and copy the stylesheet to dist folder.

grunt build

This will do build mentioned above and then turn on the watcher.

grunt dev

This will run the tests.

npm test

##License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


You May Also Like