我正在尝试复制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;
}
我用这个混入:
这样,您也可以重新使用它的过渡。