line-scale.css 884 B

12345678910111213141516171819202122232425262728293031
  1. @keyframes line-scale {
  2. 0% {
  3. transform: scaley(1); }
  4. 50% {
  5. transform: scaley(0.4); }
  6. 100% {
  7. transform: scaley(1); } }
  8. .line-scale > div:nth-child(1) {
  9. animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  10. .line-scale > div:nth-child(2) {
  11. animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  12. .line-scale > div:nth-child(3) {
  13. animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  14. .line-scale > div:nth-child(4) {
  15. animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  16. .line-scale > div:nth-child(5) {
  17. animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  18. .line-scale > div {
  19. background-color: #55595c;
  20. width: 4px;
  21. height: 3.45rem;
  22. border-radius: 2px;
  23. margin: 2px;
  24. animation-fill-mode: both;
  25. display: inline-block; }