我有以下适用于 <img> 的延迟加载功能。
<script>
document.addEventListener("DOMContentLoaded", function() {
var lazyloadImages;
if ("IntersectionObserver" in window) {
lazyloadImages = document.querySelectorAll(".lazy");
var imageObserver = new IntersectionObserver(function(entries, observer) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
var image = entry.target;
image.src = image.dataset.src;
image.classList.remove("lazy");
imageObserver.unobserve(image);
}
});
});
lazyloadImages.forEach(function(image) {
imageObserver.observe(image);
});
} else {
var lazyloadThrottleTimeout;
lazyloadImages = document.querySelectorAll(".lazy");
function lazyload () {
if(lazyloadThrottleTimeout) {
clearTimeout(lazyloadThrottleTimeout);
}
lazyloadThrottleTimeout = setTimeout(function() {
var scrollTop = window.pageYOffset;
lazyloadImages.forEach(function(img) {
if(img.offsetTop < (window.innerHeight + scrollTop)) {
img.src = img.dataset.src;
img.classList.remove('lazy');
}
});
if(lazyloadImages.length == 0) {
document.removeEventListener("scroll", lazyload);
window.removeEventListener("resize", lazyload);
window.removeEventListener("orientationChange", lazyload);
}
}, 20);
}
document.addEventListener("scroll", lazyload);
window.addEventListener("resize", lazyload);
window.addEventListener("orientationChange", lazyload);
}
})
</script>Run Code Online (Sandbox Code Playgroud)
该函数不是我的,我需要知道如何修改它以适用于从 CSS 加载图像的下一个示例:
<div class="col-md-2 col-sm-3 col-xs-4 photo" style="padding: 2.5px">
<span onclick="window.location.href=\''.$link.'\';"
class="thumbnail"
role="img"
style="background-image: url(\''.$image.'\'); cursor: pointer; margin: 0; margin-top: 5px;"
aria-label="' . $row["topic_title"] . '"
title="'.$row['topic_title'].'">
</span>
<center>
<p class="name" style="margin 0 2px; color: white; margin-top: 5px;">
<a href="'.$link.'" title="'.$row['topic_title'].'">' . $title . '</a>
</p>
</center>
</div>Run Code Online (Sandbox Code Playgroud)
在有 24 个 gif 的页面上,页面加载速度相对较慢,我想改变这一点。我可以使用 <img> 正常加载图像,但我希望页面更加动态,因为使用 span 我有不同的 temathic。
这是我如何设法执行脚本并且它可以正常工作。希望有人会觉得它有用。
if (entry.isIntersecting) {
var image = entry.target;
image.src = image.dataset.src;
var imageUrl = "url" + "(" + "'" + image.src + "')";
entry.target.style.backgroundImage = imageUrl;
image.classList.remove("lazy");
imageObserver.unobserve(image);
}Run Code Online (Sandbox Code Playgroud)
小智 0
在包含 24 张 gif 的页面上,页面加载速度相对较慢,我想对此进行更改。
一般来说,图像在网站上确实很重。这很可能是导致网站速度变慢的原因。如果您的网站需要那么多 GIF,我会首先考虑压缩技术。搜索 GIF 到 WebP 转换器和文件压缩器(ImageAlpha、ImageOptim、Handbrake等)。
祝你好运!