Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

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

Open
AlexanderLivanov opened this issue Apr 18, 2024 · 0 comments

Comments

@AlexanderLivanov
Copy link
Owner

Использовать <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>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
Status: No status
Development

No branches or pull requests

1 participant