Guest User

Untitled

a guest
Dec 13th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function sectionFadeIn() {
  2. $('.fadein').each(function() {
  3. var top_of_object = $(this).offset().top + 50;
  4. var bottom_of_window = $(window).scrollTop() + $(window).height();
  5. if (bottom_of_window > top_of_object) {
  6. $(this).animate({ 'opacity': '1'}, 1000);
  7. }
  8. })
  9.  
  10. .fadein {
  11. opacity: 0;
  12. }
  13.  
  14. .fadein:first-of-type {
  15. opacity: 1;
  16. }
Add Comment
Please, Sign In to add comment