Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div id="header"></div>
  2. <div id="content"></div>
  3.  
  4. #header{
  5. height: 300px;
  6. background: #bbb;
  7. }
  8.  
  9. #content{
  10. height: 900px;
  11. background: #444;
  12. }
  13.  
  14. .fixed{
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. }
  19.  
  20. <script>
  21.  
  22. var header = $('#header');
  23. var heightHeader = header.height;
  24.  
  25. window.onscroll = function(){
  26. if ($('#header').classList.contains('fixed'){
  27. $('#header').classList.remove('fixed');
  28. $('#content').css({"margin-top" : "0"});
  29. } else{
  30. $('#header').classList.add('fixed');
  31. $('#content').css({"margin-top" : "heightHeader"});
  32. }
  33. };
  34. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement