analyse.wxss
775 Bytes
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
35
36
37
38
39
40
41
42
43
/* packageB/pages/AI-test-skin/analyse/analyse.wxss */
page {
    width: 100%;
    height: 100%;
}
.content {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    background: #515658;
    width: 100%;
    height: 100%;
}
@keyframes mymove {
    from {
        background-position: 0, 0;
    }
    to {
        background-position: -9450px 0;
    }
}
.img {
    background: url("https://mshopimg.yolipai.net//miniapp/images/skinimg/11.png");
    margin-top: 15%;
    display: inline-block;
    width: 350px;
    height: 350px;
    transform: scale(0.55);
    animation: 1s mymove infinite steps(27, end);
}
.progress {
    margin-top: 3%;
    width: 60%;
    /* text-align: center; */
    margin-left: 50%;
    transform: translateX(-50%);
}