我有这段代码用于延迟加载图像:
https://jsfiddle.net/uf9Ldptw/
//Link rel preload
const createPreloadLink = (href, listener) => {
const link = document.createElement('link'); //meta tag link
link.rel = 'preload';
link.as = 'image';
link.href = href;
link.addEventListener('load', listener);
document.head.appendChild(link);
};
const updateBackground = lazyloadEl => {
if (lazyloadEl.classList.contains('loaded')) {
return; // Do nothing if the photo is already loaded
}
const title = lazyloadEl.querySelector('.LazyLoadElement');
title.style.backgroundImage = `url(${title.dataset.backgroundImage})`;
lazyloadEl.classList.add('loaded');
};
const handler = entries => {
entries.forEach(entry => {
if (entry.isIntersecting && entry.intersectionRatio >= 0.75) {
updateBackground(entry.target);
}
});
};
const observer = new IntersectionObserver(handler, { threshold: 0.75 });
//Observer buildin browser. 25% on screen
const cards = document.querySelectorAll('.lazyLoadContainer');
cards.forEach(lazyloadEl => {
const title = lazyloadEl.querySelector('.LazyLoadElement');
const observeEl = () => observer.observe(lazyloadEl);
createPreloadLink(title.dataset.backgroundImage, observeEl);
});
我正在使用Intersection Obeserver,因为我正在构建内部工具,该工具只需要与最新版本的Chrome和Firefox兼容。我不需要任何Safari或IE支持,所以我没有研究polyfills。
此代码完全符合我在Chrome中的要求,但是在Firefox中却根本不起作用。我没有收到任何错误消息,并且自Firefox 55开始支持文档Intersection Obeserver,而Im当前版本为63。
我在那里想念什么?