1234567891011121314151617181920212223242526 |
- @keyframes ant-skeleton-loading {
- 0% {
- background-position: 100% 50%;
- }
- 100% {
- background-position: 0 50%;
- }
- }
- .ant-skeleton-paragraph-animate .ant-skeleton-paragraph-row {
- background: linear-gradient(90deg, #eeeeee 25%, rgba(204, 204, 204, 0.6) 37%, #eeeeee 63%);
- background-size: 400% 100%;
- animation: ant-skeleton-loading 1.4s ease infinite;
- }
- .ant-skeleton-paragraph-row {
- width: 100%;
- height: 15px;
- margin-bottom: 12px;
- border-radius: 4px;
- background: #eeeeee;
- }
- .ant-skeleton-paragraph-row:nth-last-of-type(1) {
- margin-bottom: 0;
- }
- .ant-skeleton-paragraph-row:nth-last-of-type(1):not(:nth-of-type(1)) {
- width: 60%;
- }
|