懒加载,按需加载

window.onload = function() {     let images = document.querySelectorAll('img');     for(let i = 0; i < images.length; i++) {         LazyImageLoader.detect(images[i]);     } }; const lazyImageMap = {}
相关文章
相关标签/搜索