What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 3 questions

Less than 30 seconds. Find out how much you really know about Google search.

🕒 ~30s 🎯 3 questions 📚 SEO Google

Official statement

For images unlikely to be immediately visible when the page loads (images below the fold), loading can be deferred until they become visible. This reduces data transfers for images the user might never see.
🎥 Source video

Extracted from a Google Search Central video

💬 EN 📅 02/07/2024 ✂ 19 statements
Watch on YouTube →
Other statements from this video 18
  1. Les images freinent-elles vraiment les performances SEO de votre site ?
  2. Quel format d'image choisir pour booster réellement les performances de votre site ?
  3. Faut-il vraiment automatiser la compression de vos images pour le SEO ?
  4. Faut-il vraiment adapter la taille de vos images selon l'appareil de l'utilisateur ?
  5. Picture et srcset pour le responsive : Google indexe-t-il vraiment toutes vos images ?
  6. Faut-il vraiment éviter le lazy-loading sur toutes vos images ?
  7. Faut-il vraiment utiliser l'attribut HTML loading pour optimiser le lazy-loading ?
  8. Les images sont-elles vraiment le principal frein à la performance de votre site ?
  9. Les images mal configurées nuisent-elles vraiment au référencement via les layout shifts ?
  10. Faut-il vraiment adapter la qualité d'image selon la taille d'écran pour le SEO ?
  11. Faut-il vraiment utiliser picture et srcset pour optimiser les images en responsive ?
  12. Comment exploiter les données structurées pour déclarer les versions alternatives d'images ?
  13. Faut-il vraiment activer le lazy-loading sur toutes les images below-the-fold ?
  14. Faut-il vraiment arrêter de lazy-loader toutes vos images ?
  15. Faut-il vraiment utiliser l'attribut HTML loading pour le lazy-loading ?
  16. 1:22 Faut-il vraiment migrer ses images vers WebP et AVIF pour améliorer son SEO ?
  17. 1:57 Faut-il vraiment automatiser la compression d'images pour le SEO ?
  18. 1:57 Faut-il vraiment vérifier manuellement la compression automatique de vos images ?
📅
Official statement from (1 year ago)
TL;DR

Google officially recommends lazy-loading for images located below the fold in order to reduce unnecessary data transfers. This technique improves initial load performance by deferring the download of images that users may never see. The main challenge: optimizing Core Web Vitals without degrading user experience.

What you need to understand

What is lazy-loading and why is Google talking about it now?

Lazy-loading consists of deferring the loading of non-critical resources until the moment they become necessary — typically when the user scrolls toward them. This technique has existed for years, but Google now explicitly recommends it for images located below the fold.

The HTML attribute loading="lazy" has been natively supported by modern browsers since 2019. Google encourages its adoption because it directly improves performance metrics, particularly LCP (Largest Contentful Paint) and reduces bandwidth consumption.

Why is this recommendation important for SEO?

Core Web Vitals are a confirmed ranking factor. By reducing the initial page weight and accelerating the loading of visible content, lazy-loading directly contributes to improving your performance scores.

Concretely? A page with 20 heavy images but only 3 visible on initial load can gain several seconds on its perceived load time. Google values this optimization because it improves user experience, particularly on mobile with limited connections.

What is the essential nuance to understand in this statement?

Martin Splitt clarifies well: "images unlikely to be immediately visible". This is not a directive to lazy-load every image without thinking. Critical images for the first screen (above the fold) should NEVER be lazy-loaded.

The other key point: "that the user might never see". Google implicitly acknowledges that optimizing for what is actually consumed is smarter than blindly loading all resources.

  • Native lazy-loading (loading="lazy") is supported by all modern browsers
  • It reduces data transfers and improves Core Web Vitals, particularly LCP
  • The recommendation specifically targets images below the fold
  • Critical images on the first screen must load normally
  • This optimization particularly benefits mobile users with limited connections

SEO Expert opinion

Is this recommendation really new or just a reminder?

Let's be honest: lazy-loading is nothing revolutionary. Developers have been using it for years via JavaScript. What's changing is that Google now recommends it officially and recognizes its positive impact on SEO through Core Web Vitals.

The fact that Martin Splitt is talking about it explicitly signals that Google still sees too many sites loading all their image resources on initial page load — an expensive and unnecessary practice. This statement is therefore more of a strong reminder than a technical innovation.

What are the limitations and pitfalls of lazy-loading?

First pitfall: lazy-loading a critical image on the first screen. This degrades the LCP instead of improving it. I've seen sites lose several ranking positions after applying blind lazy-loading to all their images, hero image included.

Second nuance — and Google doesn't say this: lazy-loading can pose problems for image crawling. If Googlebot doesn't scroll like a real user, some lazy-loaded images risk never being discovered. [To verify] in your field tests, particularly for e-commerce sites where every product image counts for Google Images.

Third point: the native loading="lazy" attribute offers no control over the trigger threshold (how many pixels before appearance). JavaScript solutions like Intersection Observer provide more precision but add complexity.

Warning: NEVER lazy-load your LCP image (usually the largest image visible on load). This destroys your performance instead of improving it. Check in Chrome DevTools which image constitutes your LCP element before any implementation.

In what cases does this rule not apply?

On ultra-short landing pages where all content fits on the first screen, lazy-loading has no value. Same for pages with only 2-3 light images: the overhead of lazy-loading can even be counterproductive.

For news sites or blogs with infinite scroll, the situation becomes more complex. You need to find a balance between initial performance and navigation fluidity. Lazy-loading too aggressively creates visually unpleasant "white holes" during fast scrolling.

Practical impact and recommendations

What should you concretely do to implement lazy-loading correctly?

Start by identifying your above the fold images — those visible without scrolling on initial load. Use Chrome DevTools in both mobile AND desktop mode because the fold line varies. These images must load normally, without lazy-loading.

For all other images (those below the fold), simply add the loading="lazy" attribute to your HTML. It's native, no external JavaScript needed. Most modern CMS platforms (WordPress, Shopify, etc.) now offer this by default or via plugin.

Then test the real impact on your Core Web Vitals via PageSpeed Insights and Search Console. Monitor particularly the LCP — it should improve, not degrade. If your LCP worsens after implementation, you've probably lazy-loaded a critical image.

What errors should you absolutely avoid?

Error #1: Applying lazy-loading to your hero image, your logo, or any immediately visible image. This delays their display and destroys your LCP. Check twice rather than once.

Error #2: Not providing explicit dimensions (width/height) to lazy-loaded images. Without dimensions, the browser cannot reserve space and you create Cumulative Layout Shift (CLS) — another Core Web Vital you're degrading while trying to optimize.

Error #3: Forgetting fallbacks for older browsers. While native support is broad, plan for a backup or accept that these users will load all images — which remains the default behavior.

How can you verify that your implementation is working correctly?

Open Chrome DevTools, Network tab, filter on "Images". Reload your page and observe: images below the fold should only load when you scroll toward them.

Use PageSpeed Insights before and after implementation. Compare LCP, TBT, and Speed Index scores. The improvement should be measurable, especially on mobile. If you gain nothing, either your images are too light for it to matter, or your implementation has an issue.

Also check in Search Console (Performance > Page Experience) that your URLs pass the Core Web Vitals thresholds. The impact may take a few weeks to reflect in Google reports.

  • Precisely identify which images are above the fold (vary by device)
  • Add loading="lazy" only to images below the fold
  • NEVER touch your LCP image or critical images on the first screen
  • Always specify width and height to avoid CLS
  • Test on both mobile AND desktop — breakpoints matter
  • Measure real impact on PageSpeed Insights and Search Console
  • Monitor behavior in Chrome DevTools > Network
  • Provide a fallback or accept default behavior for older browsers

Lazy-loading images below the fold is a direct and effective technical optimization to improve your Core Web Vitals. Native implementation via HTML attribute is simple, but requires precise analysis to avoid degrading performance instead of improving it.

If your site has hundreds of pages with varied structures, or if you notice side effects after implementation, support from a specialized SEO agency can prove valuable. These technical optimizations often require custom adjustments based on your technology stack and business priorities — an expert eye helps avoid common pitfalls and achieve measurable gains quickly.

❓ Frequently Asked Questions

Le lazy-loading des images peut-il nuire à l'indexation de mes images dans Google Images ?
Potentiellement, si Googlebot ne déclenche pas le chargement en scrollant. En pratique, Google affirme crawler les images lazy-loadées correctement avec l'attribut natif, mais des tests terrain montrent des résultats variables selon l'implémentation. Surveillez vos performances dans Google Images après déploiement.
Dois-je lazy-loader les images de mon carrousel ou slider en page d'accueil ?
Non pour la première image visible, oui pour les suivantes. La première slide est above the fold et doit charger immédiatement. Les slides suivantes peuvent être lazy-loadées car l'utilisateur ne les verra peut-être jamais.
L'attribut loading="lazy" suffit-il ou faut-il une solution JavaScript plus avancée ?
L'attribut natif suffit pour 95% des cas. Une solution JavaScript via Intersection Observer n'est justifiée que si vous avez besoin de contrôler finement le seuil de déclenchement ou de gérer des comportements complexes (placeholders personnalisés, progressive loading, etc.).
Le lazy-loading fonctionne-t-il avec les images de fond CSS (background-image) ?
Non, l'attribut loading="lazy" ne s'applique qu'aux balises <img>. Pour lazy-loader des background-images CSS, vous devez utiliser JavaScript et ajouter/retirer des classes CSS au moment approprié.
Combien de temps faut-il pour voir l'impact du lazy-loading sur mes classements ?
L'amélioration des Core Web Vitals est visible sous quelques jours dans PageSpeed Insights, mais Google met à jour ses données d'expérience sur 28 jours glissants. L'impact sur les classements peut prendre plusieurs semaines, voire mois, selon la compétitivité de vos requêtes.
🏷 Related Topics
Domain Age & History AI & SEO Images & Videos

🎥 From the same video 18

Other SEO insights extracted from this same Google Search Central video · published on 02/07/2024

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.