Navigation Menu

Skip to content

lauren/ease-in

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fade in DOM elements hierarchically using CSS transitions and 385 bytes (minfied) of JavaScript.

  1. Download the source. Add ease-in-1.0.0.min.js to your JS directory, and link it in your document before the ending body tag:
<script src="js/ease-in.min.js"></script>
  1. Add this CSS to all the items you want to fade in:
{
  opacity:0;
  -webkit-transition: opacity .5s ease-in-out;
     -moz-transition: opacity .5s ease-in-out;
       -o-transition: opacity .5s ease-in-out;
          transition: opacity .5s ease-in-out;
}
  1. Add this declaration to your stylesheet:
.visible {
  opacity:1;
  -webkit-transition: opacity .5s ease-in-out;
     -moz-transition: opacity .5s ease-in-out;
       -o-transition: opacity .5s ease-in-out;
          transition: opacity .5s ease-in-out
}
  1. Seriously, this won't work unless you add that CSS, but feel free to modify the transition duration and style if you like.

  2. After the DOM has loaded, call easeIn on the element collection of our choice. For instance, this page uses:

easeIn(document.body.children);

easeIn will sequentially apply the .visible class to each element in the collection you pass it, including all child elements if any are available.

  1. The default delay between loading each element is 50 miliseconds. To specify a longer or shorter delay, pass an optional delay parameter (in miliseconds):
easeIn(document.body.children, 200);

Contributing

I ♥ pull requests. Here's how to contribute:

  1. Fork and pull repo.
  2. If you don't have node, install it.
  3. From the repo directory, npm install --save-dev
  4. grunt watch: This will automatically JSHint, concatenate, and minify the JavaScript and automatically compile and minify the LESS every time you save. Watch for JSHint errors and correct them.
  5. Code!

About

Fade in DOM elements hierarchically using CSS transitions and 393 bytes of JavaScript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published