Guest User

Untitled

a guest
Nov 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. #hero {
  2.     position: relative;
  3.     padding: 0;
  4. }
  5.  
  6. .heropanel {
  7.     position: absolute;
  8.     top: 0;
  9.     @include animation(heroswap 20s ease-in-out infinite);
  10.     opacity: 0;
  11.     z-index: 0;
  12. }
  13.  
  14. #first {
  15.     @include animation-delay(0s);
  16. }
  17.  
  18. .nojs {
  19.     #first {
  20.         min-height: 400px;
  21.         position: static;
  22.         opacity: 1;
  23.         z-index: 1;
  24.     }
  25. }
  26.  
  27. #second {
  28.     @include animation-delay(10s);
  29. }
  30.  
  31. @include keyframes(heroswap) {
  32.     0%, 45%, 100% { opacity: 1; z-index: 1; }
  33.     50%, 95% { opacity: 0; z-index: 0; }
  34. }
Add Comment
Please, Sign In to add comment