我正在尝试在样式化组件文档中找到一种方法来创建循环。例如,我可以在样式化组件中实现此scss
循环吗?
@for $i from 0 through 20 {
#loadingCheckCircleSVG-#{$i} {
animation: fill-to-white 5000ms;
animation-delay: ($i - 1.5) * 1s;
fill: white;
opacity: 0;
}
}
有可能吗?
答案 0 :(得分:5)
我们目前不支持来自scss的迭代语法。但是,由于样式化组件接受JS插值,因此您只需编写一个简单的JS函数即可制作所需的CSS并将其放入。
import styled, { css } from "styled-components";
function createCSS() {
let styles = '';
for (let i = 0; i < 20; i += 1) {
styles += `
#loadingCheckCircleSVG-${i} {
animation: fill-to-white 5000ms;
animation-delay: ${i - 1.5}s;
fill: white;
opacity: 0;
}
`
}
return css`${styles}`;
}
const Thing = styled.div`
${createCSS()};
`