123456789101112131415 |
- /*加载骨架*/
- .skeleton{position:fixed;z-index: 9999;height: 100%;width: 100%;bottom:0px;top:0px;background:#fff;box-sizing: border-box;padding:10px}
- .skeleton .skeleton-head,.skeleton .skeleton-100,.skeleton .skeleton-80,.skeleton .skeleton-60{background:#F3F3F3;float:left;}
- .skeleton-head {width:20%;height:80px;margin-bottom:10px;}
- .skeleton-body {margin-left:22%;height: 80px;margin-bottom:10px;}
- .skeleton-100 {width:100%;height: 40px;}
- .skeleton-80 {width:80%;height: 30px;}
- .skeleton-60 {width:60%;height: 30px;}
- .skeleton-mt{margin-top:10px;}
- .skeleton-text{color: #FF0000;text-align: center;line-height:30px;font-size:28rpx;}
- .line{display: inline-block;width:5px;height:5px;border-radius: 15px;margin:0px 5px;background:#ccc}
- @keyframes loading{50%{width: 30px}100%{width:5px}}
- .lineA{animation: loading 1.5s 0s infinite}
- .lineB{animation: loading 1.5s 0.3s infinite}
- .lineC{animation: loading 1.5s 0.6s infinite}
|