Guest User

Untitled

a guest
Jan 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. $(window).scroll(function(e) {
  3. var scrolled = $(window).scrollTop(),
  4. header = $('.site-header');
  5.  
  6. header.css('top', -(scrolled) * 0.5 + 'px');
  7.  
  8. if (scrolled > $(document).height() - $(window).height() - 470) {
  9. var scrollPos = scrolled - ($(document).height() - $(window).height() - 470);
  10. var position = scrollPos / 10;
  11. var opacity = (scrollPos * 1) / 470;
  12. }
  13. });
  14. </script>
Add Comment
Please, Sign In to add comment