linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* [z-paging]公用的静态css资源 */
 
.zp-line-loading-image {
    margin-right: 8rpx;
    width: 28rpx;
    height: 28rpx;
    /* #ifndef APP-NVUE */
    animation: loading-flower 1s steps(12) infinite;
    /* #endif */
    color: #666666;
}
 
.zp-loading-image-ios{
    width: 20px;
    height: 20px;
}
 
.zp-loading-image-android{
    width: 32rpx;
    height: 32rpx;
}
 
/* #ifndef APP-NVUE */
@keyframes loading-flower {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
/* #endif */