1

我需要多个 div 同时淡出。

动画已实现到 10 个不同的 div。

当动画被触发时,它工作得非常好,只是它不适用于具有相同代码的 1 个 div。

这是动画代码:

   trigger('fadeInOut', [
  state('hide', style({
    opacity: 0,
    display: 'none'
  })),
  state('display', style({
    opacity: 1,
    display: 'inline'
  })),
  transition('display => hide', animate('100ms ease-out')),
  transition('hide => display', animate('100ms ease-out'))  
])

这是html部分

        <a href="#" class="list-group-item" data-parent="#sidebar">
            <div class="icon-container">
                <i class="fa fa-briefcase"></i>
            </div>
            <div class="fadable" [@fadeInOut]='fadeState'>
                <span>Projects</span>
                <span class="expand-icon">
                    <i class="fa fa-plus-square-o"></i>
                </span>
            </div>
        </a>

还有其他 10 个具有相同代码的锚...

任何人都可以帮忙吗?

4

1 回答 1

0

几天来我遇到了同样的问题,现在我为我解决了这个问题。我还有两个元素设置了相同的动画触发器。第一个动画正确,但另一个甚至没有开始。(并分配了“ng-animate-queued”类)

我的问题是同时,第二个元素必须被动画化(@bounce),父容器也播放了一个动画(@galleryShadow),它迫使内部元素等待(可能是角动画的性能决定引擎?)。

因为我在这里找到了一个可能的解决方案Angular Animations: Animate Parent and Child Elements。我尝试将外部动画分组以查询内部触发器并为其调用 animateChild() 。

它解决了我的问题。也许它可以帮助您或任何其他面临这种行为的人(比如我)。

trigger('galleryShadow', [
  state('stage-chosen', style({ display: 'none', transform: 'translateX(100%)' })),
  state('compare-chosen', style({ display: 'none', transform: 'none' })),
  state('presenting', style({ display: '*', transform: 'translate(50%)' })),

  transition('compare-chosen => presenting', [
      style({ display: '*', transform: 'translateX(100%)' }),
      group([
        query('@bounce', animateChild()),
        animate('200ms ease-out')
      ]),
    ]
  ),
  transition('stage-chosen => presenting', [
      style({ display: '*' }),
      group([
        query('@bounce', animateChild()),
        animate('200ms ease-out')
      ]),
    ]
  ),
  transition('presenting => stage-chosen', animate('400ms ease-in')),
  transition('presenting => compare-chosen', animate('400ms ease-in'))
])
于 2019-04-23T10:04:12.080 回答