Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React 16 and createPortal #5

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
# react-image-magnifier
A react component that accepts a high-res source image and produces a magnifier window on mouse hover over the part of the image the cursor is over

A react component that accepts a high-res source image and produces a magnifier
window on mouse hover over the part of the image the cursor is over

## Demo

![](http://media.giphy.com/media/xTiTnidsMNlZlf9I2c/giphy.gif)


## Usage

```jsx
import ImageMagnifer from 'react-image-magnifier';
import ImageMagnifer from "react-image-magnifier";

const App = () => (
<ImageMagnifier
src="img/beach-small.jpg"
height={300}
width={400}
zoomImage={{
height: 1200,
width: 1600,
height: 1200
}}
cursorOffset={{ x: 80, y: -80 }}
cursorOffset={{ left: 80, top: -80 }}
/>
)
);
```

## API (props)

| Prop | Required | Default | Type | Description |
| :------------- |:---:|:----------------:| :--------------------| :-----|
| `src` | YES | | `String` | URL of image |
| `height` | NO | `"auto"` | `Number` or `String` | height non-zoomed-in image |
| `width` | NO | `"100%"` | `Number` or `String` | width of the non-zoomed-in image |
| `zoomImage` | NO | src size | `{ width, height }` | size of the zoomed-in image |
| `cursorOffset` | NO | `{ x: 0, y: 0 }` | `{ x, y }` | offset of the zoom bubble from the cursor |
| `size` | NO | `200` | `Number` | size of the magnifier window |
| `style` | NO | | `Object` | optional styling |
| Prop | Required | Default | Type | Description |
| :-------------- | :------: | :-------------------: | :------------------- | :---------------------------------------- |
| `src` | YES | | `String` | URL of image |
| `height` | NO | `"auto"` | `Number` or `String` | height non-zoomed-in image |
| `width` | NO | `"100%"` | `Number` or `String` | width of the non-zoomed-in image |
| `zoomImage` | NO | original image size | `{ height, width }` | size of the zoomed-in image |
| `cursorOffset` | NO | `{ left: 0, top: 0 }` | `{ left, top }` | offset of the zoom bubble from the cursor |
| `magnifierSize` | NO | `200` | `Number` | size of the magnifier window |
| `style` | NO | | `Object` | optional styling |
Loading