1.1.5 • Published 4 years ago

@bidlogix/react-inner-image-zoom v1.1.5

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

react-inner-image-zoom

Demos

A React component for magnifying an image within its original container. The zoom behavior is triggered on click and the image can be moved by dragging on touch devices and by either dragging or hover panning on non-touch devices. The component supports responsive images and optional fullscreen zoom on mobile.

Travis npm package

Installation

NPM

npm install react-inner-image-zoom

Yarn

yarn add react-inner-image-zoom

Styling

I was originally importing the CSS directly into the component but I've recently realized that makes too many assumptions about the wider build process. You can now download the raw CSS file at:

/src/InnerImageZoom/styles.css

or the minified raw minified version at:

/src/InnerImageZoom/styles.min.css

to include however you see fit. Or, if your setup supports it, import the files directory from your node_modules using:

import 'react-inner-image-zoom/lib/InnerImageZoom/styles.css';

or:

import 'react-inner-image-zoom/lib/InnerImageZoom/styles.min.css';

Usage

Import and render the component:

import InnerImageZoom from 'react-inner-image-zoom';

...

<InnerImageZoom src="/path/to/image.jpg" zoomSrc="/path/to/zoom-image.jpg" />

This is the simplest usage. For additional examples, visit the demo page.

Props

PropTypeDefaultDescription
srcString(Required) URL for the original image.
srcSetStringDefault srcset attribute for a responsive original image.
sizesStringDefault sizes attribute for use with srcset.
sourcesArrayA list of image sources for using the picture tag to serve the appropriate original image (see below for more details).
zoomSrcStringURL for the larger zoom image. Falls back to original image src if not defined.
altStringAlternative text for the original image.
moveTypeStringpanpan or drag. The user behavior for moving zoomed images on non-touch devices.
fadeDurationNumber150Fade transition time in milliseconds. If zooming in on transparent images, set this to 0 for best results.
fullscreenOnMobileBooleanfalseEnables fullscreen zoomed image on touch devices below a specified breakpoint.
mobileBreakpointNumber640The maximum breakpoint for fullscreen zoom image when fullscreenOnMobile is true.
classNameStringCustom classname for styling the component.
afterZoomInFunctionFunction to be called after zoom in.
afterZoomOutFunctionFunction to be called after zoom out.

Sources

This prop accepts an array of objects which it uses to create a picture tag and source elements. The component looks for the following optional properties and you can find additional details on responsive images here:

PropTypeDefaultDescription
srcSetStringSrcset attribute for source tag.
sizesStringSizes attribute for source tag.
mediaStringAn attribute containing a media condition for use with the srcset.
typeStringAn image MIME type. This is useful for using newer formats like WebP.

Issues

Please submit issues or requests here.

Most of the implementation choices for this component are based on use cases I've encountered in the past. For example, I chose a click to zoom trigger because it's been the most requested on product detail pages I've worked on. If there's a demand for zoom on hover or other additional functionality, I'd be open to looking into it so feel free to ask.

License

MIT