JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q46315F
  • License ISC

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 transitionview

Usage

Include the components

import { TransitionView } from "transitionview";

Render Component

<TransitionView
  index={1}
  animation="fadeInDown"
>
    ...
</TransitionView>