我正在尝试复制 Windows 8 磁贴的加载动画。似乎每个图块都有一个动画延迟,略高于其前身。我目前一直在以一种低效的方式使用 nth-child 来实现这一点,如下所示。有谁知道我可以以更有效的方式实现这一目标,以满足任意数量的 div 的需求?
.results div:nth-child(1) {
animation-delay: 0.25s;
}
.results div:nth-child(2) {
animation-delay: 0.5s;
}
.results div:nth-child(3) {
animation-delay: 0.75s;
}
.results div:nth-child(4) {
animation-delay: 1s;
}
.results div:nth-child(5) {
animation-delay: 1.25s;
}
.results div:nth-child(6) {
animation-delay: 1.5s;
}
.results div:nth-child(7) {
animation-delay: 1.75s;
}
.results div:nth-child(8) {
animation-delay: 2s;
}