1.0.8 • Published 5 years ago
react-loading-animate v1.0.8
react-loading-animate
A simple animate for loading with React component.
In this React library, All of animate style and design create by this pen, thank Manoz!
Installation
Install from npm:
npm install react-loading-animate --save
Import in your project:
import Loading from 'react-loading-animate';
// Be sure to include styles at during use react-loading-animate.
import 'react-loading-animate/dist/main.css';
Usage
react-loading-animate is easy to generate animate for loading with React component.
Basic Usage
Code
import React, { useState } from 'react';
import Loading from 'react-loading-animate';
import 'react-loading-animate/dist/main.css';
const App = () => {
const [isLoading, setIsLading] = useState(false);
const loading = () => {
setIsLading(true);
setTimeout(() => { setIsLading(false); }, 3000);
};
return (
<div
style={{
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
background: '#000',
}}
>
<button type="button" onClick={loading}>Start loading!</button>
{isLoading ? <Loading /> : null}
</div>
);
};
Other type of animate
Basic Options
Option | Description | Type | Default |
---|---|---|---|
type | Have five type of animate, expect accpect beat , bar , creeping , circle , orbiting . | string | beat |
fill | Main color about animate element. | string | #4b9cdb |
zIndex | Will be set z-index of CSS on animate wrapp. | number | 10 |
Options Of Specialty Animate Type
beat
Option | Description | Type | Default |
---|---|---|---|
diameter | Each circle size of diameter. | number | 15 |
gap | Gap of each circle | number | 4 |
bar
Option | Description | Type | Default |
---|---|---|---|
width | Each element size of width. | number | 15 |
gap | Gap of each element | number | 4 |
creeping
Option | Description | Type | Default |
---|---|---|---|
height | Each element size of height. | number | 15 |
gap | Gap of each element | number | 4 |
circle
Option | Description | Type | Default |
---|---|---|---|
diameter | The circle size of diameter. | number | 15 |
orbiting
Option | Description | Type | Default |
---|---|---|---|
diameter | The ring size of diameter. | number | 15 |
1.0.8
5 years ago
1.0.7
5 years ago
1.0.6
5 years ago
1.0.5
5 years ago
1.0.4
5 years ago
1.0.2
5 years ago
1.0.1
5 years ago
1.0.3
5 years ago
0.4.9
5 years ago
0.4.8
5 years ago
0.4.10
5 years ago
0.4.7
5 years ago
0.4.6
5 years ago
0.2.1
5 years ago
0.4.5
5 years ago
0.3.5
5 years ago
0.1.7
5 years ago
0.3.2
5 years ago
0.3.1
5 years ago
0.2.2
5 years ago
0.3.4
5 years ago
0.1.6
5 years ago
0.3.3
5 years ago
0.1.5
5 years ago
0.1.4
5 years ago
0.1.3
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.0.3
5 years ago
0.0.4
5 years ago
0.0.2
5 years ago
1.0.0
5 years ago