作者:小天赐儿_492 | 来源:互联网 | 2022-10-23 12:14
我想知道如何通过在Sass中使用for循环来计算两个动画延迟(淡入和淡出)。
提出了以下建议,但不知道如何计算第二个动画延迟。
@for $i from 1 through 2 {
.text:nth-child(#{$i}) {
animation-delay: ($i * 0.5s), 4s;
}
}
我想对淡入淡出做同样的事情,所以每个文本元素都会有些许交错。
已经尝试过类似的方法,但是没有结果。
@for $i from 1 through 2 {
.text:nth-child(#{$i, $a}) {
animation-delay: ($i * 0.5s), ($a * 0.5s);
}
}
以及如何使用上一个延迟来开始另一个动画的另一个延迟?