react-native-navigator-animation
v1.2.0
Published
react-native Custom page switch animation.
Downloads
189
Maintainers
Readme
react-native-navigator-animation
Custom page switch animation.
Install
npm install react-native-navigator-animation --save
Use
import AnimationInit from "react-native-navigator-animation";
let buildStyleInterpolator = require('buildStyleInterpolator');
let NavAnimate = AnimationInit(buildStyleInterpolator);
<Navigator
initialRoute={Routes}
configureScene={(route)=>{
// here
return NavAnimate.AnimationScaleInRightDown;
}}
renderScene={(route,navigator)=>{
let Component = route.component;
return <Component {...route.params} RootNavigator={navigator} />
}}/>
Document
Animation has been defined:
AnimationScaleInRight
AnimationScaleInRightDown
AnimationScaleInRightUp
AnimationRotateInLeft
SwitchMain
(switch tab no animation)
Custom animation API:
CustomAnimation("actionIn","actionOut",[gesture Object],[base Object])
Optional value of the first parameter:
// In was parameter "actionIn"
// Out was parameter "actionOut"
//{first parameter ,Second parameter}
{UpLeftIn,UpLeftOut},
{UpRightIn,UpRightOut},
{DownLeftIn,DownLeftOut},
{DownRightIn,DownRightOut},
{RightIn,RightOut},
{LeftIn,LeftOut},
{RotateRightIn,RotateLeftOut},
{RotateRightinUp,RotateLeftoutUp},
{RotateiInY,RotateOutY},
{RotateInX,RotateOutX},
{CenterScaleIn,CenterScaleOut}
You can use it like this:
CustomAnimation("UpLeftIn","UpLeftOut");
// Or mix
CustomAnimation("UpRightIn","UpLeftOut");
The third parameter is gesture
:
{
pop:{
...BaseLeftToRightGesture,
direction:"left-to-right",
fullDistance:Width
},
jumpForward:null,
jumpBack:null,
jumpTo:null
}
The four parameter is base
:
{
// Rebound spring parameters when transitioning FROM this scene
springFriction: 26,
springTension: 200,
// Velocity to start at when transitioning without gesture
defaultTransitionVelocity: 1.5,
}
The BaseLeftToRightGesture
Default value:
const BaseLeftToRightGesture = {
// If the gesture can end and restart during one continuous touch
isDetachable: false,
// How far the swipe must drag to start transitioning
gestureDetectMovement: 2,
// Amplitude of release velocity that is considered still
notMoving: 0.3,
// Fraction of directional move required.
directionRatio: 0.66,
// Velocity to transition with when the gesture release was "not moving"
snapVelocity: 2,
// Region that can trigger swipe. iOS default is 30px from the left edge
edgeHitWidth: 30,
// Ratio of gesture completion when non-velocity release will cause action
stillCompletionRatio: 3 / 5,
fullDistance: Width,
direction: 'left-to-right',
};
You can use like this:
import AnimationInit from "react-native-navigator-animation";
let buildStyleInterpolator = require('buildStyleInterpolator');
let NavAnimate = AnimationInit(buildStyleInterpolator);
NavAnimate.CustomAnimation("rightin","leftout",{
...BaseLeftToRightGesture,
jumpTo:{
// write you gesture
}
},{
springFriction: 50,
springTension: 600,
})
Example
- step 1
git clone https://github.com/zhouyuexie/react-native-navigator-animation.git
- step 2
cd ./react-native-navigator-animation/example
- step 3
npm install
- step 4
react-native run-ios
UpdateLog
- 1.2.0:
CustomAnimation
accept four parameters, the fourth argument is an object that contains the control animation parameters