Magnify JS is a simple, lightweight jQuery plugin that adds a magnifying glass style zoom functionality to images. It is a useful feature to have for product images on ecommerce websites, or if you just want people to be able to zoom into an image without spawning additional overlays or popup windows that may cover your content. Magnify JS is based on this tutorial.
<link rel="stylesheet" href="css/magnify.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="js/jquery.magnify.js"></script>You have complete control over the style and size of the lens by modifying magnify.css. It is recommended to load the two JavaScript files at the bottom just before the closing </body> tag if possible.
The URI to the large image can be placed in the data-magnify-src attribute (as shown below) or passed as the src option when calling the .magnify() function.
<img src="/images/product.jpg" data-magnify-src="/images/product-large.jpg">If the data-magnify-src attribute or src option is not used, then Magnify JS will try to grab the large image from the parent <a> tag, e.g.:
<a href="/images/product-large.jpg">
<img src="/images/product.jpg">
</a>Make sure this comes after the two required JavaScript files from Step 1 are loaded.
<script>
$(document).ready(function() {
$('img').magnify();
});
</script>Calling the .magnify() function with options:
<script>
$(document).ready(function() {
$('img').magnify({
speed: 100,
src: '/images/product-large.jpg'
});
});
</script>Options can be set using data attributes or passed in an options JavaScript object when calling .magnify(). For data attributes, append the option name to data-magnify- (e.g., data-magnify-src="...").
| Name | Type | Default | Description |
|---|---|---|---|
speed |
number | 200 | The fade-in/out animation speed in ms when the lens moves on/off the image. |
src |
string | '' | The URI of the large image that will be shown in the magnifying lens. |
You can manually download the package from here or install Magnify JS through the npm package manager by issuing the command npm install magnify.