IntersectionObserver监听容器元素

IntersectionObserver是Chrome 51+已支撑的API,用来检测目标元素是不是处于root容器当中。
之前我们在做懒加载的时刻,一般都是监听浏览器scroll事宜,然后依据元素位置是不是处于可视窗口来做的,这类体式格局有个弊病就是,页面在监听scroll转动的时刻会致使页面加载不流通。
运用IntersectionObserverAPI就能够防止这类状况,到达腻滑加载的目标,而且能够依据threshold来定义回掉函数在什么时刻触发,越发的简朴正确。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
    .container{
        width: 1100px;
        margin: 0 auto;
    }
    .test_model{
        height: 300px;
        width: 300px;
        margin-top: 1200px;
        background-color: red;
        margin-bottom: 600px;
    }
    </style>
</head>
<body>
    <div class="container">
        <div class="test_model" id="model"></div>
    </div>
    <script type="text/javascript">
        window.onload = function(){
            var obs = new IntersectionObserver((changes)=>{
                changes.forEach(change => console.log(change.intersectionRatio.toFixed(2)))
            },{
                threshold: [0, 0.25, 0.5, 0.75, 1]
            });
            obs.observe(document.getElementById('model'));
        };
    </script>
</body>
</html>

IntersectionObserver有observe,unobserve,disconnect等三个要领,离别指绑定视察对象、住手观察、封闭视察器。
IntersectionObserver(callbakc,opts)接收两个参数,第一个参数为回调函数,在检测目标依据opts内里的threshold内容来触发。

    原文作者:一只鱼
    原文地址: https://segmentfault.com/a/1190000013174046
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞