Advertisement
AbeGuru

Header Scroll Response - CSS / JS

Sep 30th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(window).scroll(function(){
  3.  
  4. var a = 112;
  5. var pos = $(window).scrollTop();
  6. if(pos > a) {
  7.     $("menu").css({
  8.                 position: 'fixed'
  9.             });
  10. }
  11. else {
  12.     $("menu").css({
  13.                 position: 'absolute',
  14.                 top:'600px'
  15.             });
  16. }
  17. });
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement