1.0.3 • Published 6 years ago

react-native-animated-entrance v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

react-native-animated-entrance

✨ Subtle animation wrapper for your React component

Introduction

A lightweight wrapper for React Native. Animate a component's entrance using translate and opacity individually. Animation takes place on draw, any child components can consume from state without replaying the entrance.

Note this is designed for subtle enhancements to your app, it is not a comprehensive animation library.

Demo

OriginalSlow Motion

(necessary compression spoiled the quality and frame rate)

Installation

npm i -S react-native-animated-entrance

Usage

// Animating cells of e.g. Flatlist - the index is used to calculate the cascade order

renderItem = (info) => {
  return (
    <AnimatedEntrance
      axis={AnimatedEntrance.axis.vertical}
      offset={20}
      duration={900}
      order={info.index + 1}
    >
      <Image .../>
    </AnimatedEntrance>
  );
}

Order can be used as an easier form of delaying e.g. having components ordered as 1, 1.5, 2, ...

Protip: match the duration and delay props for 0 overlap. Setting the order to 0 will play no animation.

Props

NameDescriptionDefault
orderPosition of element in collection, used to calculate delay (1 for immediate)1
durationAnimation duration (ms)400
axisAxis prop types, corresponds to React Native Animated's translationhorizontal (translateX)
offsetTranslation offset20*
delayDelay of the animation launch (ms)0

* Negative offsets are also permitted

Offset and duration can be combined in declaring the 'velocity' of the animation

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

7 years ago

1.0.0

7 years ago