我正在使用ion-simple-wizard并且在其中使用了很少的动画,这限制了在prod环境中创建构建并抛出错误:
build prod failed: dirMeta.animations.map is not a function
它在开发环境中工作正常。
答案 0 :(得分:1)
我也有同样的问题。将动画功能直接用于组件文件。就像我在我的组件中使用此代码一样。
animations: [
trigger('WizardAnimations', [
state('enter', style({ position: 'absolute', top: 0 ,width:'100%'})),
state('leave', style({ visibility: 'hidden', position: 'absolute', top: 0 })),
transition('*=>enter', [
style({visibility: 'visible', opacity: 0, transform: 'scale(0)' }),
animate('300ms ease-in', style({ opacity: 1, transform: 'scale(1)' ,top: 0 }))
]),
transition('*=>leave', [
animate('300ms ease-out', style({ opacity: 0, transform: 'scale(0)',top: 0 }))
])
])
]//TO DO: Change the animation by @Input for example
一切顺利(是)