An Image Zooming library for react (best for e-commerce)
##Installation
npm install --save react-zoomify
mainly for e-commerce image zooming purpose
Bug free
simple to use
cool-animation
multiple zooming
fast (because it's react!)
see the code and customize if you need.
import ReactZoomify from 'react-zoomify'
var ReactZoomify =require('react-zoomify')
width : number | width of the image , (height is not needed :-))
magnification: number | magnification needed for the image
s : number | dimension of the square-sized clipper
zoomedImgLeft : number | the zoomed img position from left (absolute position)
zoomedImgTop : number | zoomed img position from top (absolute position)
and of-course
src : string | the sourcepath for the image
render(){
return <ReactZoomify
width={300}
src='../path/image.jpg'
s={150}
magnification={4}
zoomedImgLeft={500}
zoomedImgTop={100}
/>