1.0.0 • Published 8 years ago

simple-fade v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

simple-fade

A lightweight, simple, and easy library meant to replace the need for jQuery's fadeIn and fadeOut.

Examples

This library is very lightweight and easy to use. Simply require, pass an element and the number of milliseconds, and you're finished.

var simpleFade = require('simple-fade');
var element = document.querySelector('#testElement');

To fade out the element, for example:

simpleFade.fadeOut(3000, element);

To fade it back in:

simpleFade.fadeIn(3000, element);

simple-fade also supports simple hide / show:

simpleFade.show(element);
simpleFade.hide(element);