Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if( typeof Waypoint !== 'undefined' ) {
  2. $('.watch-scroll').each(function(){
  3. new Waypoint({
  4. element: $(this),
  5. handler: function(direction) {
  6. var el = $(this.element);
  7. if( !el.hasClass('in-view') ) {
  8. el.addClass('in-view');
  9. }
  10. },
  11. offset: '90%',
  12. });
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement