You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
.wux-skeleton-avatar {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
background: #f2f2f2;
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
line-height: 80rpx
|
|
}
|
|
.wux-skeleton-avatar--small {
|
|
width: 64rpx;
|
|
height: 64rpx;
|
|
line-height: 64rpx
|
|
}
|
|
.wux-skeleton-avatar--large {
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
line-height: 96rpx
|
|
}
|
|
.wux-skeleton-avatar--page {
|
|
width: 220rpx;
|
|
height: 220rpx;
|
|
line-height: 220rpx
|
|
}
|
|
|
|
.wux-skeleton-avatar--title {
|
|
width: 100%;
|
|
height: 120rpx;
|
|
line-height: 120rpx
|
|
}
|
|
|
|
.wux-skeleton-avatar--tab {
|
|
width: 100%;
|
|
height: 60rpx;
|
|
line-height: 60rpx
|
|
}
|
|
|
|
.wux-skeleton-avatar--full {
|
|
width: 100%;
|
|
height: 240rpx;
|
|
line-height: 240rpx
|
|
}
|
|
|
|
.wux-skeleton-avatar--circle {
|
|
border-radius: 50%
|
|
}
|
|
.wux-skeleton-avatar--rounded {
|
|
border-radius: 8rpx
|
|
}
|
|
.wux-skeleton-avatar--square {
|
|
border-radius: 0
|
|
}
|
|
.wux-skeleton-avatar--active {
|
|
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%
|
|
}
|
|
}
|