Advertisement
Guest User

Untitled

a guest
Jul 16th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;(function($) {
  2.     $(document).ready(function(){
  3.  
  4.         $('.waypoint').waypoint(function(direction) {
  5.             var item = $(this);
  6.             if(direction == 'down'){
  7.                 if(item.data('animation')){
  8.                     item.addClass('animated '+item.data('animation'));
  9.                 }
  10.             }
  11.         }, { offset: '80%' });
  12.  
  13.     });
  14. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement