Setting intersect observer to detect visibility and added delay.

This commit is contained in:
MattMo 2021-05-04 22:15:31 -07:00
parent 8b5a4b91ae
commit ad435e7098

View File

@ -965,7 +965,7 @@ class IgniteTemplate {
if (results[0].isIntersecting) {
this._intersectObserverCallback.forEach(callback => callback(results[0]));
}
}, { root: null});
}, { root: null, trackVisibility: true, delay: 1000 });
this._intersectObserver.observe(this.element);
}