Advertisement
Udoro

EXPANDING HEADER ANIMATION

Feb 13th, 2021 (edited)
1,494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.27 KB | None | 0 0
  1. /*set width of sticky header*/
  2.  
  3. #_header-ID.oxy-header-wrapper.oxy-header.oxy-sticky-header.oxy-sticky-header-active {  
  4.    max-width: 100vw;
  5.   }
  6.        
  7. /*add color to overlay header*/
  8.  
  9. #_header-ID.oxy-header.oxy-overlay-header:not(.oxy-sticky-header-active) .oxy-header-row,
  10. #_header-ID.oxy-header.oxy-overlay-header:not(.oxy-sticky-header-active) {
  11.     background-color: #e6e7e8!important;
  12.  
  13.     }
  14.  
  15. /* shrinks the header, NOTE: remember to set oxy header row height to a higher value in settings.  you can also add a different color here to give the sticky header a different color, for this to work, remove color from the selector: oxy-header-container */
  16.  
  17.  .oxy-header.oxy-sticky-header-active #_header_row-ID {  
  18.   height:60px;
  19.     }
  20.  
  21.  
  22. /* changes the logo size to fit the shrinking header*/
  23. .oxy-header.oxy-sticky-header-active img {
  24.      height:50px!important;
  25. }
  26.  
  27. /* set transition duration*/
  28.  
  29. #_header_row-ID,
  30. #_header-ID.oxy-header.oxy-overlay-header:not(.oxy-sticky-header-active) .oxy-header-row,
  31. #_header-ID.oxy-header.oxy-overlay-header:not(.oxy-sticky-header-active),
  32. #_header-ID.oxy-header-wrapper.oxy-header.oxy-sticky-header.oxy-sticky-header-active,
  33. .oxy-header img {
  34.      -webkit-transition:0.8s ease all;
  35.      transition:0.8s ease all
  36.    }
  37.  
  38.  
  39.  
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement