useful-animations
v1.1.5
Published
Useful-Animations is a package that contains all the necessary animations required by a user. It covers different types of loaders, buttons, and scroll watchers, etc.
Downloads
7
Readme
Useful-Animations
Useful-Animations is a package that contains all the necessary animations required by a user. It covers different types of loaders, buttons, and scroll watchers, etc.
Table of Contents
- scroll-watcher
- button wiggle
- Pacman
- Never ending box
- three dots loader
- Spinner
- Double Square loader
- Single Square loader
- Simple Spinner
Installation
To install the package, use the command:
npm i useful-animations
How to Import
The best way to import components of Useful-Animations is through direct import of the modules.
import {Watcher,Spinner, Square, Pacman, SquareLoader,ThreedotLoader, Endbox, Wiggle, SimpleSpinner } from 'useful-animations';
Example to import components are as follows:
Scroll-Watcher
import {Watcher} from 'useful-animations'
const App=()=>{
return(
<>
<Watcher pathcolor='yellow'/> //pathcolor is for defining color in horizontal scroll
</>
)
}
export default App
Button-Wiggle
import {Wiggle} from 'useful-animations'
const App=()=>{
return(
<>
<Wiggle backgroundcolor='black' fontcolor='white'/> // backgroundcolor defines background color of button and fontcolor defines color of text inside button
</>
)
}
export default App
Pacman
import {Pacman} from 'useful-animations'
const App=()=>{
return(
<>
<Pacman bordercolor='yellow' pathcolor='white'/> // bordercolor defines color of pacman and pathcolor defines color of eating path
</>
)
}
export default App
Never-Ending-Box
import {Endbox} from 'useful-animations'
const App=()=>{
return(
<>
<Endbox bordercolor='black'/> // bordercolor defines border-color of loader
</>
)
}
export default App
Three-Dots-loader
import {ThreedotLoader} from 'useful-animations'
const App=()=>{
return(
<>
<ThreedotLoader loadercolor='black'/> // loadercolor defines border-color of loader
</>
)
}
export default App
Spinner
import {Spinner} from 'useful-animations'
const App=()=>{
return(
<>
<Spinner/>
</>
)
}
export default App
Double-Square-Loader
import {SquareLoader} from 'useful-animations'
const App=()=>{
return(
<>
<SquareLoader loadcolor='black' size='3vmin'/> // loadcolor defines color of loader and size defines its size
</>
)
}
export default App
Single-Square-Loader
import {Square} from 'useful-animations'
const App=()=>{
return(
<>
<Square loadcolor='black' size='3vmin'/> // loadcolor defines color of loader and size defines its size
</>
)
}
export default App
Simple-Spinner
import {SimpleSpinner} from 'useful-animations'
const App=()=>{
return(
<>
<SimpleSpinner bordercolor='#fcd779' bordertop='white' />
</>
)
}
export default App