1
我想提高我所有的我的元素的動畫延遲增量,但我似乎無法得到正確的語法。我晚上採取正確的處理方法或我應該使用JS?乾杯SCSS不會編譯 - 動畫延遲
http://codepen.io/2ne/pen/ycIpj
@for $i from 1 through 10 {
&:nth-child(#{$i}) {
animation-delay: (#{$i * 0.1})s;
}
}
我想提高我所有的我的元素的動畫延遲增量,但我似乎無法得到正確的語法。我晚上採取正確的處理方法或我應該使用JS?乾杯SCSS不會編譯 - 動畫延遲
http://codepen.io/2ne/pen/ycIpj
@for $i from 1 through 10 {
&:nth-child(#{$i}) {
animation-delay: (#{$i * 0.1})s;
}
}
你應該改變&
與li
,請看下面的代碼:
@for $i from 1 through 10 {
li:nth-child(#{$i}) {
animation-delay:(#{$i*0.1s});
}
}
像這樣的標記:
<li></li>
<li></li>
...
「基地級規則不能包含家長選擇引用字符ACTER '&'「。
似乎工作分開形式我有一個動畫延遲數字和's'值之間的空間 – 2ne
我把它固定在封閉的支架內 – 2ne
是的我只是意識到這一點,好抓! –