2.1.13 • Published 5 years ago

react-native-web-image-pan-zoom v2.1.13

Weekly downloads
130
License
ISC
Repository
github
Last release
5 years ago

Show Cases

Zoom while sliding

3.gif

Intelligent zoom

2.gif

Getting Started

Installation

npm i react-native-image-pan-zoom --save

Basic Usage

  • Install create-react-native-app first
$ npm install -g create-react-native-app
  • Initialization of a react-native project
$ create-react-native-app AwesomeProject
  • Then, edit AwesomeProject/App.js, like this:
import { Image, Dimensions } from 'react-native';
import ImageZoom from 'react-native-image-pan-zoom';

export default class App extends React.Component {
    render: function() {
        return (
            <ImageZoom cropWidth={Dimensions.get('window').width}
                       cropHeight={Dimensions.get('window').height}
                       imageWidth={200}
                       imageHeight={200}>
                <Image style={{width:200, height:200}}
                       source={{uri:'http://v1.qzone.cc/avatar/201407/07/00/24/53b9782c444ca987.jpg!200x200.jpg'}}/>
            </ImageZoom>
        )
    }
}

Document

PropsTypeDescriptionDefaultValue
cropWidth(required)numberoperating area width100
cropHeight(required)numberoperating area height100
imageWidth(required)numberpicture width100
imageHeight(required)numberpicture height100
onClick(eventParams: IOnClick)=>voidonClick()=>{}
panToMovebooleanallow to move picture with one fingertrue
pinchToZoombooleanallow scale with two fingerstrue
clickDistancenumberhow many finger movement can also trigger onClick10
horizontalOuterRangeOffset(offsetX?: number)=>voidhorizontal beyond the distance, the parent to do picture switching, you can listen to this function. When this function is triggered, you can do the switch operation()=>{}
onDragLeft()=>voidtrigger to switch to the left of the graph, the left sliding speed exceeds the threshold when triggered()=>{}
responderRelease(vx: number)=>voidlet go but do not cancel()=>{}
maxOverflownumbermaximum sliding threshold100
longPressTimenumberlong press threshold800
onLongPress()=>voidon longPress()=> {}
doubleClickIntervalnumbertime allocated for second click to be considered as doublClick event175
onMove( position: IOnMove )=>voidreports movement position data (helpful to build overlays)()=> {}
centerOn{ x: number, y: number, scale: number, duration: number }if given this will cause the map to pan and zoom to the desired locationundefined
enableSwipeDownbooleanfor enabling vertical movement if user doesn't want itfalsefalse
enableCenterFocusbooleanfor disabling focus on image center if user doesn't want ittrue
onSwipeDown() => voidfunction that fires when user swipes downnull
swipeDownThresholdnumberthreshold for firing swipe down function230
minScalenumberminimum zoom scale0.6
maxScalenumbermaximum zoom scale10
MethodparamsDescription
resetReset the position and the scale of the image
resetScaleReset the scale of the image
centerOnICenterOnCenters the image in the position indicated. ICenterOn={ x: number, y: number, scale: number, duration: number }

Development pattern

Step 1, run TS listener

After clone this repo, then:

npm install
npm start

Step 2, run demo

cd demo
npm install
npm start

Then, scan the QR, use your expo app.