Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(window).bind("scroll", function(){
  2. var div_pos_from_top = $('#nav').offset().top - $(window).scrollTop();
  3.  
  4. if (div_pos_from_top < 300) {
  5. $('#nav').css('... , ...');
  6. } else {
  7. $('#nav').css('... , ....');
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement