Advertisement
Udoro

Tab Contents transition effect CSS

Jul 29th, 2022 (edited)
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. #tab_wrapper .oxy-tabs-contents {
  2.  
  3. position: relative;
  4. overflow: hidden;
  5. }
  6.  
  7. #tab_wrapper .oxy-tab-content {
  8.  
  9. padding: 0;
  10. transform: translateX(0%);
  11. transition: transform 0.7s, opacity 1s;
  12. overflow: hidden;
  13.  
  14. }
  15. #tab_wrapper .oxy-tab-content > * {
  16.  
  17. opacity: 1;
  18. transform: translateY(0%);
  19. transition: transform 0.7s, opacity 1s;
  20. transition-delay: .5s;
  21.  
  22. }
  23.  
  24. #tab_wrapper .oxy-tabs-contents-content-hidden {
  25. display: flex !important;
  26. opacity: 0.5 !important;
  27. transform: translateX(100%) !important;
  28. position: absolute;
  29. left: 0;
  30. z-index: 5;
  31. }
  32.  
  33. #tab_wrapper .oxy-tabs-contents-content-hidden > * {
  34. opacity: 0;
  35. transform: translateY(100%);
  36.  
  37. }
  38.  
  39.  
  40.  
  41.  
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement