Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <script>
  2. $(window).bind("scroll", function() {
  3. if ($(this).scrollTop() > 560 ) {
  4. $("#image_to_fade").fadeIn(1000);
  5. } else {
  6. $("#image_to_fade").stop().fadeOut();
  7. }
  8. });
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement