我正在使用PNotify在角度应用程序中发出警报消息。我已经应用了动画,但是动画无法正常工作。
下面是我正在使用的代码。
PNotify.notice({
title: 'Animate.css Effect',
text: 'Part Quantity is greater.',
modules: {
Animate: {
animate: true,
inClass: 'rotateInDownLeft',
outClass: 'rotateOutUpRight'
}
}
});
答案 0 :(得分:1)
如果您使用除app.module.ts
之外的其他模块,请在这些模块中也包含BrowserAnimationsModule
。
希望能解决。