Advertisement
robinellen

Timeline plugin code injection

Jan 4th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!-- Squarestudio Plug in for Timeline -->
  2.  
  3. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
  4. <script>
  5. $(document).ready(function() {
  6. $(window).scroll( function(){
  7. $('.timeline-list').each( function(i){
  8. var scrollTop = $(window).scrollTop();
  9. var elementOffset = $(this).offset().top - $(this).outerHeight()/.75;
  10. if( scrollTop > elementOffset ){
  11. $(this).addClass('triggered');
  12. }
  13. });
  14. });
  15. });
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement