我用一个效果很好的Angular动画创建了一个元素(div.parent
)。当我向其中添加一个子元素并尝试为该子元素设置动画时,其中一个动画最终不会运行(只是捕捉到新状态)。
Stackblitz: https://stackblitz.com/edit/angular-2tbwu8
标记:
<div [@theParentAnimation]="state" class="parent">
<div [@theChildAnimation]="state" class="child">
</div>
</div>
动画:
trigger( 'theParentAnimation', [
state( 'down', style( {
transform: 'translateY( 100% ) translateZ( 0 )',
} ) ),
transition( '* <=> *', [
group( [
query( ':self', [
animate( '0.9s cubic-bezier(0.55, 0.31, 0.15, 0.93)' ),
] ),
query( '@theChildAnimation', animateChild() ),
] ),
] ),
] ),
trigger( 'theChildAnimation', [
state( 'down', style( {
transform: 'translateY( 100% ) translateZ( 0 )',
} ) ),
transition( '* <=> *', [
animate( '0.9s cubic-bezier(0.55, 0.31, 0.15, 0.93)' ),
] ),
] ),
答案 0 :(得分:4)
看起来好像不需要使用query( ':self', ...
,因为您正在使用group()
动画将并行运行。您可以在父级动画中更改转场:
transition('* <=> *', [
group([
query('@theChildAnimation', animateChild()),
animate('0.9s cubic-bezier(0.55, 0.31, 0.15, 0.93)'),
]),
]),