Advertisement
Cryston13

Untitled

Jan 26th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. *{
  5. margin:0px;
  6. padding:0px;
  7. }
  8.  
  9. #headfirst{
  10. border:1px solid #000;
  11. height:140px;
  12. width:100%;
  13. background:green;
  14. }
  15.  
  16. .logo {
  17. border:1px solid #000;
  18. height:80px;
  19. width:100%;
  20. background:#363636;
  21. transition: all 1s;
  22. }
  23.  
  24. .small-logo {
  25. height:65px;
  26. width:100%;
  27. background-color: DeepSkyBlue;
  28. }
  29.  
  30. #headtwo{
  31. position:sticky;
  32. top:0;
  33.  
  34. }
  35.  
  36. #content{
  37. height:8000px;
  38. width:100%;
  39. background:red;
  40. }
  41. </style>
  42.  
  43.  
  44.  
  45. </head>
  46. <body>
  47.  
  48. <script>
  49.  
  50. document.addEventListener('scroll', function() {
  51. let totalScrolled = document.documentElement.scrollTop,
  52. logo = document.getElementsByClassName('logo')[0];
  53.  
  54. if(totalScrolled > 140) {
  55. logo.classList.add('small-logo')
  56. } else {
  57. logo.classList.remove('small-logo')
  58. }
  59. })
  60. </script>
  61.  
  62. <div id="headfirst"></div>
  63. <div id="headtwo" class="logo"></div>
  64. <div id="content"></div>
  65.  
  66.  
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement