Open yangmaoHu opened 5 years ago
构造函数
new IntersectionObserver(callback, options);
callback 发生交叉的回调,接受一个entries参数,返回当前已监听并且发生了交叉的目标集合(后面会举例说明为什么是"且发生了交叉"):
new IntersectionObserver(entries => {
entries.forEach(item => console.log(item));
// ...
});
原文