AlexanderLivanov/FotosEngine3

Картинки-заглушки для быстрой загрузки изображений

Opened this issue · 0 comments

Использовать <img loading="lazy" … /> и <img decoding="async" … />. Также есть

<sсript>
 document.body.addEventListener(
   "load",
   (e) => {
     if (e.target.tagName != "IMG") {
       return;
     }
     // Remove the blurry placeholder.
     e.target.style.backgroundImage = "none";
   },
   /* capture */ true
 );
</sсript>