mustaqsheikh / zoomove

:mag: :fireworks: Enlarges the image with the mouse hover and move

Home Page:http://thompsonemerson.github.io/zoomove

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ZooMove | jQuery Zoom Image

licence mit Build Status GitHub version Bower version npm version

It's a plugin developed with jQuery, that allows to dynamically zoom images with mouseover, and view details with mouse move.

Install

Get with npm.

$ npm install zoomove --save

Or bower.

$ bower install zoomove --save

If you prefer you can just download a ZIP file.

Setup

First, include the script located on the dist folder.

<!-- ZooMove CSS minified -->
<link rel="stylesheet" href="dist/zoomove.min.css">

<!-- jQuery CDN JS minified (must) -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>

<!-- ZooMove JS minified -->
<script src="dist/zoomove.min.js"></script>

Now need to prepare our(s) image(s) and show to the ZooMove.

<!-- Item image -->
<figure class="zoo-item" zoo-image="img/example.jpg"></figure> 

<!-- Starting the ZooMove -->
<script>
   $('.zoo-item').ZooMove();
</script>

Ready, prepared environment, now is hour of our plugin take action and prepare all remaining process.
Now says it is not easy?! ;)

How to use

Property Default Description
zoo-image - The url of the photo to be displayed.
zoo-scale 1.5 (150%) Sets the zoom size that should be applied to the image.
zoo-move true Choose whether the image should move with the mouse move.
zoo-over false With 'over' it is possible to define whether the image may be above.
zoo-cursor false Define the cursor pointer or default.
<!-- HTML Element -->
<figure 
	class="zoo-item" 
	zoo-image="[value]"
	zoo-scale="[value]"
	zoo-move="[value]"
	zoo-over="[value]"
	zoo-cursor="[value]"
	>
</figure>
<!-- JavaScript -->
<script>
   $('.zoo-item').ZooMove({
   		image: '[value]',
     	scale: '[value]',
     	move: '[value]',
     	over: '[value]',
     	cursor: '[value]'
   });
</script>
<!-- Thus it is applied universally -->

Browser Support

Chrome Firefox IE Opera Safari
42+ ✔ 41+ ✔ 9+ ✔ 29+ ✔ 9+ ✔

Contributing

Find on our roadmap the next steps of the project ;)
Help improve these docs. Open an issue or submit a pull request.

  • Navigate to the main page of the repository
  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -m 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request =D

History

See Releases for detailed changelog.

License

MIT License © Emerson Thompson

About

:mag: :fireworks: Enlarges the image with the mouse hover and move

http://thompsonemerson.github.io/zoomove


Languages

Language:JavaScript 44.3%Language:HTML 29.9%Language:CSS 25.8%