feat: 添加最新预约加载骨架屏状态
This commit is contained in:
@@ -285,3 +285,24 @@ page {
|
||||
color: #b8c9db;
|
||||
letter-spacing: 4rpx;
|
||||
}
|
||||
|
||||
/* 骨架屏 */
|
||||
.skeleton-row {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
padding: 8rpx 0;
|
||||
}
|
||||
|
||||
.skeleton-bar {
|
||||
height: 24rpx;
|
||||
border-radius: 8rpx;
|
||||
background: linear-gradient(90deg, #e8eef5 25%, #dbeafe 50%, #e8eef5 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: skeleton-pulse 1.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes skeleton-pulse {
|
||||
0% { background-position: 200% 0; }
|
||||
100% { background-position: -200% 0; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user