Advertisement
Udoro

Scroll to reveal/hide header - CSS

Feb 25th, 2022
2,488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1.  
  2. /* replace .header-2 with your header class*/
  3. .scroll-down .header-2 {
  4.    
  5.     transform: translateY(-100%);
  6.     background-color: black;
  7. }
  8.  
  9. .scroll-up .header-2{
  10.    
  11.     transform: translateY(0);
  12.     background-color: black;
  13.    
  14. }
  15.  
  16. /* replace .logo-2 with your logo class*/
  17. .scroll-up .logo-2,
  18. .scroll-down .logo-2{
  19.    
  20.     width: 50px
  21. }
  22.  
  23.  
  24. /* replace #_nav_menu-172-53 with your menu id*/
  25. .scroll-up #_nav_menu-172-53 .menu-item a,
  26. .scroll-down #_nav_menu-172-53 .menu-item a{
  27.     padding-top: 6px;
  28.     padding-bottom: 6px;
  29.     color: white;
  30.     font-size: 14px;
  31.    
  32. }
  33.  
  34. /* replace #_nav_menu-172-53 with your menu id*/
  35.  #_nav_menu-172-53 .menu-item a {
  36.      
  37. transition:.4s;
  38.  transition-property:  padding, font-size, color;
  39.    
  40. }
  41.  
  42. body {
  43.     padding-top: 5rem;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement