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

时间:2019-05-13 11:03:59

标签: angular pnotify

我正在使用PNotify在角度应用程序中发出警报消息。我已经应用了动画,但是动画无法正常工作。

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

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

1 个答案:

答案 0 :(得分:1)

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