fade-animations
v1.2.1
Published
A small library for easy fade in fade in and fade out effects.
Downloads
33
Readme
fade-animations
A small library for easy fade in fade in and fade out effects.
Install
NPM
npm i fade-animations
CDN
<link rel="stylesheet" href="https://unpkg.com/fade-animations/dist/index.min.css">
<script src="https://unpkg.com/fade-animations/dist/index.min.js"></script>
Usage
fadeIn
import { fadeIn } from 'fade-animations'
const element = document.getElementById('elementId')
fadeIn(element)
fadeOut
import { fadeOut } from 'fade-animations'
const element = document.getElementById('elementId')
fadeOut(element)