wujingjing
2024-08-09 f1c54fca586a4d30e046b2a7ce4a18e02c3fe17e
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
/* components/chat-components/NormalText/normal-text.wxss */
 
.dot {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    height: 1em;
    line-height: 1em;
    vertical-align: -0.25em;
}
.dot::before {
    display: block;
    content: '...\A..\A.';
    white-space: pre-wrap;
    animation: dot 3s infinite step-start both;
}
@keyframes dot {
    33% {
        transform: translateY(-2em);
    }
    66% {
        transform: translateY(-1em);
    }
}