index.wxss 459 B

1234567891011121314151617181920
  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-title {
  10. height: 20px;
  11. width: 45%;
  12. margin-bottom: 20px;
  13. border-radius: 4px;
  14. background: #eeeeee;
  15. }
  16. .ant-skeleton-title-animate {
  17. background: linear-gradient(90deg, #eeeeee 25%, rgba(204, 204, 204, 0.6) 37%, #eeeeee 63%);
  18. background-size: 400% 100%;
  19. animation: ant-skeleton-loading 1.4s ease infinite;
  20. }