line-scale-pulse-out.css 680 B

123456789101112131415161718192021
  1. @keyframes line-scale-pulse-out {
  2. 0% {
  3. transform: scaley(1); }
  4. 50% {
  5. transform: scaley(0.4); }
  6. 100% {
  7. transform: scaley(1); } }
  8. .line-scale-pulse-out > div {
  9. background-color: #55595c;
  10. width: 4px;
  11. height: 3.45rem;
  12. border-radius: 2px;
  13. margin: 2px;
  14. animation-fill-mode: both;
  15. display: inline-block;
  16. animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
  17. .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  18. animation-delay: -0.4s !important; }
  19. .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  20. animation-delay: -0.2s !important; }