wujingjing
2024-08-09 f1c54fca586a4d30e046b2a7ce4a18e02c3fe17e
miniprogram/components/chat-components/normal-text/normal-text.scss
@@ -1 +1,25 @@
/* components/chat-components/NormalText/normal-text.wxss */
/* 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);
   }
}