我有一个使用wow.js的角元件。
我用npm安装了npm并通过angular.json连接了它。
我所有的东西都正常工作,但是我在控制台里收到了两个警告:
MutationObserver is not supported by your browser.
WOW.js cannot detect dom mutations, please call .sync() after loading new content.
以前有人遇到过这个问题吗?
因为这些都是警告,所以这个项目不会中断,所以修复这个问题并不重要,但是最好让这些警告消失。
下面是我的compnent.ts文件,只显示必要的部分:
import { AfterViewInit, Component, OnInit } from '@angular/core';
import { WOW } from 'wowjs/dist/wow.min';
export class AboutComponent implements OnInit, AfterViewInit {
wow = new WOW();
ngAfterViewInit() {
this.wow.init();
}
}发布于 2018-07-03 20:24:09
https://stackoverflow.com/questions/51161823
复制相似问题