Ciro Santilli OurBigBook.com $£ Sponsor €¥ 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
web-cheat/js-image-load-viewport.html
<!doctype html>
<html lang=en>
<head>
    <meta charset=utf-8>
    <title>js-image-load-viewport</title>
    <style>
        .separator {
            height: 1000px;
            width: 100px;
            border: 5px solid red;
        }
        img {
            height: 340px;
            border: 5px solid black;
        }
    </style>
    </head>
<body>
    <div><img></div>
    <div class="separator"></div>
    <div><img></div>
    <div class="separator"></div>
    <div><img></div>
    <div class="separator"></div>
    <div><img></div>
    <div class="separator"></div>
    <div><img></div>
    <div class="separator"></div>
    <div><img></div>
</body>
<script>
var observer = new IntersectionObserver(
    (entries, observer) => {
        entries.forEach(entry => {
            if (entry.intersectionRatio > 0.0) {
                img = entry.target;
                if (!img.hasAttribute('src')) {
                    alert('will load the image!!!');
                    img.setAttribute('src', "https://raw.githubusercontent.com/cirosantilli/media/master/Ciro_Santilli's_learn_teach_apply_logo.png");
                }
            }
        });
    },
    {}
)
for (let img of document.getElementsByTagName('img')) {
    observer.observe(img);
}
</script>
</html>