我想利用 css 动画能力的优势进行无限动作来控制我每次以不同值作为目标的孩子然后在某个时候回到零等等。假设我想为一组 3 个 DIV 的背景着色,所以 CSS 代码将是:
<style>
div:nth-of-type(1){
-webkit-animation:coloring 2s infinite;
}
@-webkit-keyframes coloring{
from {background:red;}
to {background:yellow;}
}
<style>
因此,只要我使用无限属性,它就会永远存在,在这里我想连续增加 nth-of-type 的值(1,2,3),然后当达到 3 时它会回到 1