A simple React component to reveal content behind a block using CSS3 animations.
Install using npm:
$ npm install react-block-reveal-animation --save
Install using yarn:
$ yarn add react-block-reveal-animation
Import react-block-reveal-animation
and use it in your component like so:
import React from 'react';
import BlockRevealAnimation from 'react-block-reveal-animation';
const MyComponent = () => (
<div>
<BlockRevealAnimation>
This will be revealed
</BlockRevealAnimation>
</div>
);
export default MyComponent;
You can pass props to <BlockRevealAnimation>
like so:
<BlockRevealAnimation className="myCustomClassName" delay={2} duration={1} color="#ff0000">
Children goes here
</BlockRevealAnimation>
All props are optional.
Name | Description | Default |
---|---|---|
color |
The color of the block | #000 |
delay |
Animation start delay in seconds | 1 |
duration |
Animation duration in seconds | 0.9 |
Created by Petter Samuelsen. Inspired by Tympanus Block Revealers
Copyright ยฉ 2018
Petter Samuelsen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the โSoftwareโ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED โAS ISโ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.