我试图在 styled-components 文档中找到一种方法来创建一个循环。例如,我可以scss
在样式组件中实现这个循环吗?
@for $i from 0 through 20 {
#loadingCheckCircleSVG-#{$i} {
animation: fill-to-white 5000ms;
animation-delay: ($i - 1.5) * 1s;
fill: white;
opacity: 0;
}
}
是否可以?