fix: lazy load portraits
This commit is contained in:
parent
df3afc90a7
commit
871c6d6959
@ -2,17 +2,14 @@ window.onload = function () {
|
|||||||
// Get all <img> elements with loading="lazy"
|
// Get all <img> elements with loading="lazy"
|
||||||
var lazyImages = document.querySelectorAll('img[loading="lazy"]');
|
var lazyImages = document.querySelectorAll('img[loading="lazy"]');
|
||||||
|
|
||||||
|
console.log(lazyImages)
|
||||||
|
|
||||||
// Loop through each image and apply the fade-in effect
|
// Loop through each image and apply the fade-in effect
|
||||||
lazyImages.forEach(function (lazyImage) {
|
lazyImages.forEach(function (lazyImage) {
|
||||||
lazyImage.style.opacity = 0;
|
|
||||||
lazyImage.classList.add("lazy-image")
|
|
||||||
console.log(lazyImage)
|
console.log(lazyImage)
|
||||||
|
|
||||||
// Create an image element to check when it's loaded
|
|
||||||
var img = new Image();
|
var img = new Image();
|
||||||
img.src = lazyImage.src;
|
img.src = lazyImage.src;
|
||||||
img.onload = function () {
|
img.onload = function () {
|
||||||
console.log("lloooaded")
|
|
||||||
lazyImage.style.opacity = 1;
|
lazyImage.style.opacity = 1;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user