замеры изображений из нужного селектора? window.addEventListener('load', function() {
var elements = document.getElementsByClassName('categorys__main-ellement');
Array.from(elements).forEach(function(element) {
var img = element.querySelector('img');
var imgSrc = img.getAttribute('src');
fetch(imgSrc)
.then(function(response) {
return response.blob();
})
.then(function(blob) {
return createImageBitmap(blob);
})
.then(function(imageBitmap) {
var imgWidth = imageBitmap.width;
var imgHeight = imageBitmap.height;
img.setAttribute('width', imgWidth);
img.setAttribute('height', imgHeight);
});
});
});
для того, что бы не ругался гугл, что занчнеия не указаны
и не прыгала верстка при пред загрузке
Обсуждают сегодня