无法在 Angular 应用中为 PNotify 应用动画

Unable to apply animation for PNotify in Angular app

我在 angular 应用程序中使用 PNotify 作为警报消息。我应用了动画,但动画不起作用。

下面是我正在使用的代码。

PNotify.notice({
          title: 'Animate.css Effect',
          text: 'Part Quantity is greater.',
          modules: {
            Animate: {
              animate: true,
              inClass: 'rotateInDownLeft',
              outClass: 'rotateOutUpRight'
            }
          }
        });

如果您使用 app.module.ts 以外的其他模块,请在这些模块中也包含 BrowserAnimationsModule。 希望能解决。