1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .wux-skeleton-paragraph {
- position: relative;
- overflow: hidden
- }
- .wux-skeleton-paragraph__row {
- height: 32rpx;
- background: #f2f2f2;
- width: 100%;
- margin-top: 32rpx
- }
- .wux-skeleton-paragraph__row:first-child {
- margin-top: 0
- }
- .wux-skeleton-paragraph__row:nth-child(4n+1) {
- width: 80%
- }
- .wux-skeleton-paragraph__row:nth-child(4n+2) {
- width: 100%
- }
- .wux-skeleton-paragraph__row:nth-child(4n+3) {
- width: 70%
- }
- .wux-skeleton-paragraph__row:nth-child(4n+4) {
- width: 85%
- }
- .wux-skeleton-paragraph--rounded .wux-skeleton-paragraph__row {
- border-radius: 8rpx
- }
- .wux-skeleton-paragraph--active .wux-skeleton-paragraph__row {
- background: linear-gradient(90deg,#f2f2f2 25%,#e6e6e6 37%,#f2f2f2 63%);
- animation: loading 1.4s ease infinite;
- background-size: 400% 100%
- }
- @keyframes loading {
- 0% {
- background-position: 100% 50%
- }
- 100% {
- background-position: 0 50%
- }
- }
|