Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulocheque/jquery-simpleimagezoom
It is common that we want to highlight a image because a link or something. This can be done by a border change, link hover etc or a Image Zoom.
https://github.com/paulocheque/jquery-simpleimagezoom
Last synced: 17 days ago
JSON representation
It is common that we want to highlight a image because a link or something. This can be done by a border change, link hover etc or a Image Zoom.
- Host: GitHub
- URL: https://github.com/paulocheque/jquery-simpleimagezoom
- Owner: paulocheque
- Created: 2012-04-08T14:42:57.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-04-08T15:21:41.000Z (over 12 years ago)
- Last Synced: 2024-12-02T07:55:56.293Z (25 days ago)
- Language: JavaScript
- Homepage: http://archive.plugins.jquery.com/project/SimpleImageZoom
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkd
Awesome Lists containing this project
README
# JQuery-SimpleImageZoom
It is common that we want to highlight a image because a link or something. This can be done by a border change, link hover etc or a Image Zoom.
*
* Latest Release: 0.1.0# Example of Usage
```html
// Default values: { zoom: 10, speed_hover: 100, speed_unhover: 100, unit: 'px', }
$('img').ImageZoom();// Custom values
$('img').ImageZoom({ zoom: 15, speed_hover: 100, speed_unhover: 200, unit: 'px' });
```