Ninetiger blog

-- my reminder

Animated scroll loading effects with Animate.css and jQuery

ref: http://www.web2feel.com/tutorial-for-animated-scroll-loading-effects-with-animate-css-and-jquery/

LIbs needed:

  1. animate.css lib
  2. jquery Viewport Checker

Setup:

1. HTML


 

<div class="container">

    <div class="post"> <!-- Post content goes here --> </div>

    <div class="post"> <!-- Post content goes here --> </div>

    <div class="post"> <!-- Post content goes here --> </div>

    <div class="post"> <!-- Post content goes here --> </div>

    <div class="post"> <!-- Post content goes here --> </div>

    <div class="post"> <!-- Post content goes here --> </div>

</div>

 

2. CSS

.hidden{

     opacity:0;

}

.visible{

     opacity:1;

}

 

3. JS

jQuery(document).ready(function() {

    jQuery('.post').addClass("hidden").viewportChecker({

        classToAdd: 'visible animated fadeIn',

        offset: 100

       });

});

Comments:

Back to top