我正在使用PNotify的警告信息,在角应用程序。我已经应用了动画,但是动画不起作用。
下面是我正在使用的代码。
PNotify.notice({
title: 'Animate.css Effect',
text: 'Part Quantity is greater.',
modules: {
Animate: {
animate: true,
inClass: 'rotateInDownLeft',
outClass: 'rotateOutUpRight'
}
}
});发布于 2020-02-14 08:53:45
如果您使用的是app.module.ts以外的不同模块,那么在这些模块中也包括BrowserAnimationsModule。希望它能解决。
https://stackoverflow.com/questions/56111050
复制相似问题