我正在使用cdk
步进器来构建新的步进器,但是我找不到一种方法来为步之间的过渡附加角度动画。有人可以帮我吗?
我已经尝试通过用current
替换变量stepper.selectedIndex
来解决this的问题,但效果不如预期。
<app-custom-stepper #stepper>
<cdk-step [@stepTransition]="stepper.selectedIndex === 0 ? 'current' : 'previous'
">
<p>This is any content of "Step 1"</p>
</cdk-step>
<cdk-step [@stepTransition]="stepper.selectedIndex === 1 ? 'current'
: stepper.selectedIndex > 1
? 'previous'
: 'next'
">
<p>This is any content of "Step 2"</p>
</cdk-step>
</app-custom-stepper>
感谢您的帮助!