我试图通过对每个子元素应用动画来创建级联效果。我想知道是否有比这更好的方法:
.myClass img:nth-child(1){
-webkit-animation: myAnimation 0.9s linear forwards;
}
.myClass img:nth-child(2){
-webkit-animation: myAnimation 0.9s linear 0.1s forwards;
}
.myClass img:nth-child(3){
-webkit-animation: myAnimation 0.9s linear 0.2s forwards;
}
.myClass img:nth-child(4){
-webkit-animation: myAnimation 0.9s linear 0.3s forwards;
}
.myClass img:nth-child(5){
-webkit-animation: myAnimation 0.9s linear 0.4s forwards;
}
诸如此类。 所以基本上,我想有一个动画开始为每个孩子,但有一个延迟。 谢谢你的建议!
补充: 也许我没有正确地解释我关心的是什么: 这是关于如何做到这一点,无论我有多少孩子。如何做到这一点,而不必写下每个孩子的属性... ... 例如,当我不知道有多少孩子将是。