1
SASSを使用してアニメーションの遅延内で(CSS calc()を使用して)計算しようとしていますが、計算の結果を出力していないようです計算そのもの)。アニメーションの遅延内でのSASSとCSSのcalc()の使用
.home-slider-container .home-slider .each-slide svg .letter {
opacity: 0;
animation: svgAnimate 4s linear;
}
@for $i from 1 through 8 {
.home-slider-container .home-slider .each-slide svg .letter-#{$i} {
$test: calc(#{$i}/2);
animation-delay: #{$test};
}
}
私は間違っていますか?
'$ test:$ i/2;'を試してください。 – SamHH