-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: page | ||
title: Lazy load | ||
--- | ||
|
||
La technique du "lazy load" consiste à ne charger des ressources que lorsqu'elles sont nécessaires pour l'affichage visible. | ||
|
||
Ainsi, des images qui se situent "hors-champ" lors du chargement initial, ne seront chargées que lorsque le scroll les fait entrer dans zone visible. | ||
|
||
Cette méthode a été utilisée depuis de nombreuses années en ayant recours à des solutions JavaScript. | ||
|
||
Désormais, un attribut HTML a été défini, qui est progressivement adopté par les navigateurs - [voir l'état actuel sur CanIUse](https://caniuse.com/loading-lazy-attr). L'attribut est supporté notamment: | ||
|
||
- Depuis 2019 dans Chrome (77) | ||
- Depuis 2020 dans Edge (79) | ||
- Depuis 2020 dans Firefox (75) | ||
- Depuis décembre 2022 dans Chrome pour Android (108) | ||
- Depuis 2022 dans Safari (15.4) | ||
|
||
En janvier 2023, cet attribut est pris en compte dans 91.47% des navigateurs. | ||
|
||
## Comment utiliser | ||
|
||
Il suffit d'ajouter un attribut `loading="lazy"` à la balise `img`. Exemple: | ||
|
||
```html | ||
<img src="image.png" loading="lazy" alt="…" width="200" height="200"> | ||
``` | ||
|
||
## Ressources | ||
|
||
- CanIUse: [https://caniuse.com/loading-lazy-attr](https://caniuse.com/loading-lazy-attr) - l'état du support des navigateurs. | ||
- web.dev [https://web.dev/browser-level-image-lazy-loading/](https://web.dev/browser-level-image-lazy-loading/) - article très complet sur la manière d'utiliser le Lazy Load. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters