我坚持使用CDK为Angular材质自定义步进器的步进变化设置动画。 我已遵循tutorial的有关如何实现自定义步进器的知识。
我有一个演示here
我的模板如下:
<section class="container">
<header>
<h2>Step {{selectedIndex + 1}}/{{steps.length}}</h2>
<div>
<button class="pure-button" cdkStepperPrevious>←</button>
<button
class="pure-button"
*ngFor="let step of steps; let i = index;"
[ngClass]="{'pure-button-primary': selectedIndex === i}"
(click)="onClick(i)"
>
Step {{i + 1}}
</button>
<button class="pure-button" cdkStepperNext>→</button>
</div>
</header>
<div [@stepTransition]="_getAnimationDirection(current)" *ngFor="let step of _steps; let i = index">
<div [ngTemplateOutlet]="selected.content"></div>
</div>
</section>
我的组件TS文件如下:
import { Component, OnInit } from '@angular/core';
import { CdkStepper } from '@angular/cdk/stepper';
import {
trigger,
state,
style,
animate,
transition,
} from '@angular/animations';
@Component({
selector: 'app-my-stepper',
templateUrl: './my-stepper.component.html',
styleUrls: ['./my-stepper.component.css'],
providers: [{ provide: CdkStepper, useExisting: MyStepperComponent }],
animations: [trigger('stepTransition', [
state('previous', style({transform: 'translate3d(-100%, 0, 0)', visibility: 'hidden'})),
state('current', style({transform: 'none', visibility: 'visible'})),
state('next', style({transform: 'translate3d(100%, 0, 0)', visibility: 'hidden'})),
transition('* => *', animate('500ms cubic-bezier(0.35, 0, 0.25, 1)'))
])]
})
export class MyStepperComponent extends CdkStepper implements OnInit {
current = 0;
onClick(index: number): void {
this.current = index;
this.selectedIndex = index;
}
ngOnInit() {
console.log(this._getFocusIndex())
}
}
动画仅在最后一步起作用,原因是动画状态(上一个,当前,下一个)的值不会改变onClick。
我该如何实现?任何想法都非常感谢,谢谢。
更新 检查stackblitz存储库以获取最新代码
答案 0 :(得分:1)
在您的stackblitz demo中,您具有以下html:
<div *ngFor="let step of _steps; let i = index"
[@stepTransition]="_getAnimationDirection(i)"
[attr.tabindex]="selectedIndex === i ? 0 : null"
[id]="_getStepContentId(i)"
(@stepTransition.done)="_animationDone.next($event)"
[attr.aria-labelledby]="_getStepLabelId(i)"
[attr.aria-expanded]="selectedIndex === i">
<ng-container [ngTemplateOutlet]="selected.content">
</ng-container>
</div>
我认为这里的主要问题是在这一行:<div [ngTemplateOutlet]="selected.content"></div>
您为每个div
创建一个step
,每个div
将包含相同的selected.content
。因此,应用于父级div
(transform
和visibility
)的所有样式也将应用于selected.content
,这将导致行为不明确。
如果将其替换为<div [ngTemplateOutlet]="step.content"></div>
,您将开始看到所有图像,但它们将被一个接一个地放置。
发生这种情况是由于css visibility属性:
它显示或隐藏元素,而无需更改其布局 文档。
因此,我建议您将position: absolute;
添加到您的步骤中。
看看stackblitz的这些改进