返回 AiToEarn
layout.module.css
根目录 / project / aitoearn-web / src / app / [lng] / chat / layout.module.css
1 /* Chat 布局局部样式 */
2
3 /* 滚动动画 */
4 @keyframes marquee {
5 0% {
6 transform: translateX(0);
7 }
8 100% {
9 transform: translateX(-50%);
10 }
11 }
12
13 .marquee {
14 display: flex;
15 align-items: center;
16 animation: marquee 20s linear infinite;
17 }
18
18 lines CSS