IntersectionObserver

今天调试一个做好了的静态网页,用的是jQuery和原生js 在做动画的时候用到了 IntersectionObserver 这个api 来监听元素是否出现在视口 结果发现 兼容性非常差:

兼容性查询网站 www.caniuse.com

但是找到了一个仓库解决了该问题。

该仓库由w3c提供 IntersectionObserver 兼容脚本

下载:

npm i intersection-observer -S
复制代码

使用:

(完)

转载于:https://juejin.im/post/5c9c7e426fb9a070f90ace5e

你可能感兴趣的:(IntersectionObserver)