Package Exports
- transitionview
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (transitionview) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
TransitionView
TransitionView is a drop-in replacement for a View component. It serves the same purpose, except to animate it into the UI. It utilizes the Animatable library for animations and adds an index prop to control the sequence at which things load.
Installation
npm i transitionviewUsage
Include the components
import { TransitionView } from "transitionview";Render Component
<TransitionView
index={1}
animation="fadeInDown"
>
...
</TransitionView>