作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下 HTML 为 ngRepeat div 的子元素错开动画。
<strong>This staggers</strong>
<div ng-repeat="item in items" class="animate-stagger container" ng-animate-children="true">
<div>{{item}}</div>
</div>
<strong>This doesn't stagger</strong>
<div ng-repeat="item in items" class="animate-child-stagger container" ng-animate-children="true">
<div>{{item}}</div>
</div>
我可以使用 CSS 成功地为 ngRepeat div 错开动画:
.animate-stagger{
animation-duration: 2s;
}
.animate-stagger.ng-enter-active {
animation-name: slide;
transform: scaleX(0);
}
.animate-stagger.ng-enter-stagger {
animation-delay: 1s;
animation-duration: 0s;
}
我可以为子 div 设置动画,但它不会使用 CSS 错开:
.animate-child-stagger {
animation-duration: 2s;
}
.animate-child-stagger.ng-enter-active div {
animation: slide 2s;
transform: scaleX(0);
}
.animate-child-stagger.ng-enter-stagger div {
animation-delay: 1s;
animation-duration: 0s;
}
有没有一种方法可以使用 CSS 和 ngAnimate 错开子动画?
最佳答案
我能够通过将动画延迟应用于父元素(即使它是动画的子元素)来完成这项工作。
.animate-stagger-child {
animation-duration: 2s;
}
.animate-stagger-child.ng-enter-active div {
animation: slide 2s;
transform: scaleX(0);
}
.animate-stagger-child.ng-enter-stagger {
animation-delay: 1s;
animation-duration: 0s;
}
关于css - 不能错开 ngAnimate 子动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37373476/
我有 3 个不同的 NSTimer,我想每 0.3 秒触发一次,但我希望 3 个 NSTimer 交错排列,这样它们就不会同时触发。例如,NSTimer1 在 0.1 时触发,然后在 0.4 时触发,
我的页面上有一堆图像,每 5 秒就会淡入、延迟和淡出 这看起来有点奇怪,因为所有类都在同一时间闪入和闪出。 有没有办法让每个间隔在前一个间隔后执行 500MS?或者可能抵消每一项? 这是同时闪烁它们的
我有很多 .line,我正在为它们应用淡入淡出的动画。我想知道是否有一种简单的方法可以以某种方式错开动画时间,以便一个接一个地触发每个动画(而不是一次全部触发)。换句话说,我想创建一种效果,其中第一个
请问有没有什么办法。例如我有一个这样的动画 demo on Codepen . 500 毫秒后,下一个立方体将具有动画效果。如何在第一个动画时间的 1/2 后让下一个立方体动画。我知道如何使用 .an
我是一名优秀的程序员,十分优秀!