bgfade

1.0.1 • Public • Published

bgfade

bgfade is JavaScript Library to switch display of DOM elements with fade.

How to use

install this packege.

$ npm install -D bgfade

edit html file like below.

<style>
 #target {
   height: 300px;
   list-style: none;
   width: 300px;
 }

 #target li {
   background-color: royalblue;
   font-size: 30px;
   height: 100%;
   text-align: center;
   width: 100%;
 }
</style>

<!-- must use ul with id -->
<ul id="target">
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ul>

edit js file like below.

import bgfade from 'bgfade';
const bg = bgfade('target');

Parameters

bgfade use some parameters.

Bgfade(id, {speed: value, duration: value});
parameter description
id(String) id name of target ul. must.
speed(Number) the time of fade out. default 3.
duration(Number) duration of fade out to fade out. default 4.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    0
    • latest

Version History

Package Sidebar

Install

npm i bgfade

Homepage

bgfade.site

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

8.3 kB

Total Files

4

Last publish

Collaborators

  • diwao