文件:Vip.module.css
内容:
.smallAndBigAA {
animation: 1s infinite smallAndBig;
}
@keyframes smallAndBig {
0%, 100% {
width: 85%; height: 36px;
}
50% {
width: 80%; height: 34px;
}
}
引入文件
import style from "./Vip.module.css"
当样式使用:
className={style.smallAndBigAA}