当前我正在使用滑动离子列表中的一些动画,例如从左到右滑动以及根据本教程淡入的内容。 https://www.joshmorony.com/how-to-create-animations-with-css-in-ionic/
@-webkit-keyframes animateInPrimary {
0% {
-webkit-transform: translate3d(-100%,0,0);
}
100% {
-webkit-transform: translate3d(0,0,0);
}
}
@-webkit-keyframes animateInSecondary{
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-in-primary {
-webkit-animation: animateInPrimary;
animation: animateInPrimary;
-webkit-animation-duration: 750ms;
animation-duraton: 750ms;
}
.animate-in-secondary {
-webkit-animation: animateInSecondary ease-in 1;
animation: animateInSecondary ease-in 1;
-webkit-animation-duration: 750ms;
animation-duraton: 750ms;
}
现在我希望离子项一个接一个地滑动。我想我必须使用css属性-webkit-animation-delay。但我不知道在哪里插入它。希望有人能提供帮助。谢谢, 阿什利
答案 0 :(得分:0)
如果您想使用CSS动画执行此操作,那么您需要做的是为每个列表项添加增量类,然后相应地错开动画,如下所示:CSS Animations with delay for each child element
更简单的方法是使用动画模块的内置交错功能 - 看一下这篇文章:https://coursetro.com/posts/code/78/Creating-Stagger-Animations-in-Angular-4#