Smooth Image Zoom Pan Plugin With jQuery ZooMove - Free Download Smooth Image Zoom & Pan Plugin With jQuery - ZooMove

Free Download Smooth Image Zoom & Pan Plugin With jQuery – ZooMove

Posted on

This time I will share jQuery Plugin and tutorial about Smooth Image Zoom & Pan Plugin With jQuery – ZooMove, hope it will help you in programming stack.

Smooth Image Zoom Pan Plugin With jQuery ZooMove - Free Download Smooth Image Zoom & Pan Plugin With jQuery - ZooMove
File Size: 153 KB
Views Total: 9812
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

ZooMove is a super tiny jQuery/HTML5 image zoom plugin which smoothly enlarges and pan a specified image when mouse hovering and moving.

How to use it:

1. Add jQuery JavaScript library and the jQuery ZooMove plugin’s script to the webpage.

1 <link rel="stylesheet" href="zoomove.min.css">
2 <script src="//code.jquery.com/jquery.min.js"></script>
3 <script src="zoomove.min.js"></script>

2. Add the image to the webpage using zoo-image attribute as follows:

1 <figure class="zoo-item"
2         zoo-image="image.jpg">
3         Loading...
4 </figure>

3. Initialize the plugin and we’re done.

1 $('.zoo-item').ZooMove();

4. Default configuration options. Note that the following options can be passed via zoom-OPTION attributes or by passing an object literal when initializing plugin as follows:

1 <figure class="zoo-item"
2         data-zoo-image="image.jpg"
3         data-zoo-scale="1.5"
4         data-zoo-move="true"
5         data-zoo-over="false"
6         data-zoo-cursor="false"
7         data-zoo-autosize="auto">
8         Loading...
9 </figure>
01 $('.zoo-item').ZooMove({
02    
03   // image url
04   image: 'image.jpg',
05  
06   // shows the cursor pointer
07   cursor: 'false',
08  
09   // zoom size
10   scale: '1.5',
11  
12   // enable image pan
13   move: 'true',
14  
15   // whether the image may be above
16   over: 'false',
17  
18   // auto size image
19   autosize: 'true'
20    
21 });

Changelog:

2020-04-13

  • v1.3.0: allows to auto size image

2019-08-10

  • v1.2.1

2018-10-26

  • fix for improved performance

This awesome jQuery plugin is developed by thompsonemerson. For more Advanced Usages, please check the demo page or visit the official website.