@gotpop/multitool
Version:
MultiTool is a CLI tool to assist in quickly setting up a Hugo project for NetlifyCMS
26 lines (23 loc) • 903 B
JavaScript
// let options = {
// root: document.querySelector('#scrollArea'),
// rootMargin: '0px',
// threshold: 1.0
// }
// let observer = new IntersectionObserver(callback, options);
// document.addEventListener("DOMContentLoaded", function () {
// const imageObserver = new IntersectionObserver((entries, imgObserver) => {
// entries.forEach((entry) => {
// if (entry.isIntersecting) {
// const lazyImage = entry.target
// console.log("lazy loading ", lazyImage)
// lazyImage.src = lazyImage.dataset.src
// lazyImage.classList.remove("lzy_img");
// imgObserver.unobserve(lazyImage);
// }
// })
// });
// const arr = document.querySelectorAll('img.lzy_img')
// arr.forEach((v) => {
// imageObserver.observe(v);
// })
// });