1.7.1 • Published 5 years ago

fadin v1.7.1

Weekly downloads
516
License
MIT
Repository
github
Last release
5 years ago

Fadin

Build Status Coverage Status

Extremely light fade in animation library. 3kb in size ungzipped :rocket:

Getting Started

run in your terminal

$ npm i fadin
const fadin = require('fadin')

document.addEventListener('DOMContentLoaded', () => {
  fadin('.my-class', { delay: 200 })
})
<div class="my-class"></div>
<div class="my-class" data-delay="0.4s"></div>
<div class="my-class"></div>
.my-class {
    opacity: 0;
    transition: 0.3s opacity;
}

#Todo list

  • add more documation comments / clear up
  • add options to fade in my direction
  • make more performant/smooth
  • let options be functions and values

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Free Software, Hell Yeah!

1.7.1

5 years ago

1.7.0

5 years ago

1.6.0

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago