图片懒加载
Fri Aug 30 2024 05:08:29 GMT+0000 (Coordinated Universal Time)
Saved by
@vasttininess
#javascript
; (function () {
const ob = new IntersectionObserver((entries) => {
entries.filter(entry => entry.isIntersecting).forEach(entry => {
const img = entry.target;
img.src = img.dataset.src;
ob.unobserve(img);
})
})
const imgs = document.querySelectorAll('img[data-src]');
imgs.forEach(img => { ob.observe(img) });
})();
content_copyCOPY
Comments