| 123456789101112131415161718192021 |
- @keyframes line-scale-pulse-out {
- 0% {
- transform: scaley(1); }
- 50% {
- transform: scaley(0.4); }
- 100% {
- transform: scaley(1); } }
- .line-scale-pulse-out > div {
- background-color: #55595c;
- width: 4px;
- height: 3.45rem;
- border-radius: 2px;
- margin: 2px;
- animation-fill-mode: both;
- display: inline-block;
- animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
- .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
- animation-delay: -0.4s !important; }
- .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
- animation-delay: -0.2s !important; }
|