Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

react native image pan and zoom

License

NotificationsYou must be signed in to change notification settings

ascoders/react-native-image-zoom

Repository files navigation

All Contributors

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, editAwesomeProject/App.js, like this:
import{Image,Dimensions}from'react-native';importImageZoomfrom'react-native-image-pan-zoom';exportdefaultclassAppextendsReact.Component{render:function(){return(<ImageZoomcropWidth={Dimensions.get('window').width}cropHeight={Dimensions.get('window').height}imageWidth={200}imageHeight={200}><Imagestyle={{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()=>{}
onDoubleClick(eventParams:IOnClick)=>voidonDoubleClick()=>{}
panToMovebooleanallow to move picture with one fingertrue
pinchToZoombooleanallow scale with two fingerstrue
clickDistancenumberhow many finger movement can also triggeronClick10
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(eventParams:IOnClick)=>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 itfalse
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
useNativeDriverbooleanWhether to animate usinguseNativeDriverfalse
onStartShouldSetPanResponder() => booleanOverride onStartShouldSetPanResponder behavior() => true
onMoveShouldSetPanResponder() => booleanOverride onMoveShouldSetPanResponder behaviorundefined
onPanResponderTerminationRequest() => booleanOverride onMoveShouldSetPanResponder behavior() => false
useHardwareTextureAndroidbooleanfor disabling rendering to hardware texture on Androidtrue
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 installnpm start

Step 2, run demo

cd demonpm installnpm start

Then, scan the QR, use yourexpo app.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Darius

💻

Thomas P.

💻

Juan Di Toro

💻

Alhaytham Elhassan

💻

Alexander Pataridze

💻

Peter Xu

💻

This project follows theall-contributors specification. Contributions of any kind welcome!

About

react native image pan and zoom

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors22


[8]ページ先頭

©2009-2025 Movatter.jp