.Box {
animation: someAnimation 3s linear 0s 1 normal none;
}
然后,如果我想实现级联(顺序)效果:
.Box:nth-child(1) {
animation-delay: 0s;
}
.Box:nth-child(2) {
animation-delay: 0.5s;
}
.Box:nth-child(3) {
animation-delay: 1s;
}
etc...
通常,这可以通过mixin自动使用LESS或SASS进行,该mixin为N个元素输出.
问题是:如何在CSS中为无限量的元素执行此操作?
换句话说,如何在不指定每个孩子的延迟的情况下制作级联动画?
最佳答案