index.wxss 659 B

1234567891011121314151617181920212223242526
  1. @keyframes ant-skeleton-loading {
  2. 0% {
  3. background-position: 100% 50%;
  4. }
  5. 100% {
  6. background-position: 0 50%;
  7. }
  8. }
  9. .ant-skeleton-paragraph-animate .ant-skeleton-paragraph-row {
  10. background: linear-gradient(90deg, #eeeeee 25%, rgba(204, 204, 204, 0.6) 37%, #eeeeee 63%);
  11. background-size: 400% 100%;
  12. animation: ant-skeleton-loading 1.4s ease infinite;
  13. }
  14. .ant-skeleton-paragraph-row {
  15. width: 100%;
  16. height: 15px;
  17. margin-bottom: 12px;
  18. border-radius: 4px;
  19. background: #eeeeee;
  20. }
  21. .ant-skeleton-paragraph-row:nth-last-of-type(1) {
  22. margin-bottom: 0;
  23. }
  24. .ant-skeleton-paragraph-row:nth-last-of-type(1):not(:nth-of-type(1)) {
  25. width: 60%;
  26. }