Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // FIX HEAD
  2. var min = false;
  3. $(document).scroll(function() {
  4. if($(document).scrollTop()>40&&!min)
  5. {
  6. $("#fix").toggleClass("line-head__wrap line-head__wrap--fixed");
  7. min = true;
  8. }
  9. if($(document).scrollTop()<=40&&min)
  10. {
  11. $("#fix").toggleClass("line-head__wrap line-head__wrap--fixed");
  12. min = false;
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement