edvincandon / ReactDelayed

Small component for delaying the mounting and unmounting of a child component for CSS animation purposes.

Home Page:https://react-delayed.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Delayed

Small component for delaying the mounting and unmounting of a child component for CSS animation purposes.

Travis   Coveralls   npm   License MIT


Getting Started

Use the optional mountAfter and unmountAfter props for delaying the mounting and unmounting of nested components.

<Delayed mounted={true} mountAfter={500} unmountAfter={500}>
    <img src="./images/nyan.gif" alt="Nyan" />
</Delayed>

When mounted is false a dummy node will be rendered, which defaults to span and can be changed with the nodeName prop.

You're also able to pass a thunk as the children for truly deferred components.

<Delayed mounted={true} mountAfter={500} unmountAfter={500}>
    {() => <img src="./images/nyan.gif" alt="Nyan" />}
</Delayed>

About

Small component for delaying the mounting and unmounting of a child component for CSS animation purposes.

https://react-delayed.herokuapp.com/

License:MIT License


Languages

Language:JavaScript 66.5%Language:CSS 29.3%Language:HTML 4.2%