Difference between revisions of "User:BakiDance/timeless.css"

From Drawn to Life Wiki
Line 25: Line 25:
  
 
.sidebar-chunk {
 
.sidebar-chunk {
   animation: SB_fall 1.2s forwards;
+
   animation: SB_fall 2.2s forwards;
 
}
 
}

Revision as of 01:22, 23 June 2022

@keyframes SB_fall {
  0% {
    transform-origin: 100% 0;
    opacity: 1;
  }
  20% {
    transform: 
      translate3d(0, 20px, 0)
      rotate3d(0, 0, 1, -10deg);
    opacity: 1;
  }
  40%, 45% {
    transform: 
      translate3d(0, -20px, 0)
      rotate3d(0, 0, 1, 10deg);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: 
      translate3d(0, 100em, 0)
      rotate3d(0, 0, 0, 0deg);
  }
}

.sidebar-chunk {
  animation: SB_fall 2.2s forwards;
}