toutes les images ne sont pas resize 4
This commit is contained in:
parent
9dc1b940dc
commit
29437e281a
|
@ -70,14 +70,12 @@ function initSwiper() {
|
|||
}
|
||||
|
||||
function resizeVerticalImages() {
|
||||
setTimeout(() => {
|
||||
let verticalImages = document.querySelectorAll('.swiper-slide > img');
|
||||
for (let img of verticalImages) {
|
||||
console.log(img.clientHeight > img.clientWidth);
|
||||
img.addEventListener('load', () => {
|
||||
if (img.clientHeight > img.clientWidth) {
|
||||
console.log("yes");
|
||||
img.style.width = "50%";
|
||||
}
|
||||
})
|
||||
}
|
||||
}, 200);
|
||||
}
|
Loading…
Reference in New Issue