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

Performance degradation can occur if lazy loading is used for above-the-fold images. Recent versions of Lighthouse report if a lazy-loaded image impacts LCP.
🎥 Source video

Extracted from a Google Search Central video

💬 EN 📅 06/05/2022 ✂ 11 statements
Watch on YouTube →
Other statements from this video 10
  1. Le CLS est-il vraiment un facteur de classement Google à part entière ?
  2. Vos images sabotent-elles votre CLS sans que vous le sachiez ?
  3. Faut-il vraiment spécifier les dimensions des images pour corriger le CLS ?
  4. Les données de laboratoire suffisent-elles vraiment pour optimiser vos Core Web Vitals ?
  5. Pourquoi le Chrome User Experience Report change-t-il la donne pour mesurer les performances réelles de votre site ?
  6. Le LCP mesure-t-il vraiment la vitesse d'affichage du contenu principal ?
  7. Faut-il vraiment prioriser le chargement de vos images héros pour améliorer le LCP ?
  8. Pourquoi PageSpeed Insights est-il l'outil de performance à privilégier pour le SEO ?
  9. HTTP/2 peut-il vraiment booster les performances de votre site sans refonte technique ?
  10. Faut-il vraiment passer toutes ses images en WebP pour le SEO ?
📅
Official statement from (3 years ago)
TL;DR

Google confirms that lazy loading applied to above-the-fold images degrades performance, particularly LCP. Lighthouse now automatically flags this common mistake. The rule is straightforward: only images below the initial viewport should be deferred loading.

What you need to understand

Why can lazy loading hurt Core Web Vitals?

Lazy loading is a technique that delays image loading until they're about to appear in the viewport. It's an excellent practice for reducing initial page weight and accelerating overall load times.

The problem emerges when this technique applies to above-the-fold images — those visible without scrolling. The browser must first parse the HTML, execute the lazy loading JavaScript, then only load the image. This delay artificially extends the Largest Contentful Paint (LCP), a critical Core Web Vitals metric.

What exactly does Lighthouse flag now?

Recent Lighthouse versions specifically detect lazy-loaded images that impact LCP. If your largest visual element — often the hero banner — is deferred loading, you'll see an explicit alert in your report.

This automatic detection simplifies diagnosis. Previously, you had to cross-reference Performance data with the DOM to identify the culprit. Now Lighthouse points directly to the problem.

What's the difference between above and below the fold?

Above the fold refers to everything visible on screen at initial load, without user interaction. Below the fold is the rest — everything requiring scrolling to be seen.

On mobile, this threshold typically sits around 600-800px in height. On desktop, around 1000px depending on screen resolutions. But beware: this boundary varies by device and configuration. An image at 700px might be above the fold on a 4K screen and below on a smartphone.

  • Lazy loading on above-the-fold images: slows down LCP and degrades user experience
  • Lazy loading on below-the-fold images: optimizes initial load time and reduces bandwidth consumption
  • Lighthouse automatically detects lazy-loaded images impacting LCP in recent versions
  • The fold position varies by device — a responsive strategy is essential

SEO Expert opinion

Is this recommendation really new?

No. SEO and webperf experts have repeated this advice since the introduction of native HTML5 lazy loading. What's changing is that Google now officially codifies the practice and Lighthouse makes it an automatic checkpoint.

In the field, I still regularly spot this error — especially on sites using CMS or builders that apply lazy loading globally without distinction. A simple loading="lazy" in a global template is enough to tank LCP.

In what cases can this rule be nuanced?

Let's be honest: the rule seems crystal clear, but implementation gets complicated once you step beyond textbook scenarios. On a page with multiple conditional layouts (mobile vs desktop), which image is truly above the fold? On a carousel that dynamically loads its visuals, how do you manage priorities?

Google's statement remains deliberately generic. It doesn't specify how to handle responsive srcset images, nor expected behavior for CSS background-image that can also impact LCP. [To verify]: does Lighthouse penalize only <img> tags or also CSS backgrounds?

Watch for false positives: on complex templates, an image technically below the fold on your test screen might be above the fold for 30% of your visitors. Analyze your actual audience devices before deciding.

What technical mistake do you see most often?

The classic pitfall: developers applying loading="lazy" via JavaScript to every DOM image at load time. Result: even the first image gets deferred. Worse, some frameworks add this directive automatically without the tech team realizing it.

Another frequent case — critical images loaded via JavaScript. The browser can't detect them during initial parsing, making preloading impossible even without explicit lazy loading. LCP explodes, and Lighthouse doesn't understand why since technically there's no loading="lazy" attribute.

Practical impact and recommendations

How do I identify above-the-fold images on my site?

Use PageSpeed Insights or Lighthouse directly in Chrome DevTools. The "Diagnostics" section precisely indicates which image is your LCP and whether it's lazy-loaded. Test across multiple resolutions — desktop, tablet, mobile.

For deeper analysis, use the "Performance" tab in Chrome DevTools. Start a recording, reload the page, then visually identify which element appears first. If you see a delay between DOM Content Loaded and your main visual appearing, it's likely a lazy loading issue.

What strategy should I adopt to fix it?

First step: remove lazy loading from hero images, primary banners, and initial visuals. Concretely, strip the loading="lazy" attribute from these elements. If your CMS adds it automatically, modify the template or use a filter to exclude certain CSS classes.

Second optimization — add a preload for the LCP image via a <link rel="preload" as="image" href="..."> tag in the <head>. This directive tells the browser to load this resource with absolute priority. Caution: preload only one image, otherwise you dilute priority.

For sites with conditional layouts, the technical solution becomes more sophisticated. You need to detect server-side or via critical JavaScript which visual will be above the fold based on device, then dynamically inject the correct preload. This type of implementation requires specialized expertise — delegating to an SEO agency specialized in webperf lets you avoid missteps and guarantee measurable results without tying up internal resources for weeks.

How do I verify the fix works?

Rerun Lighthouse after your changes. The LCP score should improve significantly if the image was the bottleneck. Target an LCP under 2.5 seconds — ideally under 1.5 seconds on mobile.

Also validate in real conditions with Chrome User Experience Report (CrUX) or Search Console's "Web Vitals" section. Lab data (Lighthouse) only reflects a controlled scenario. Field metrics show your actual users' experience.

  • Audit the site with Lighthouse and identify the LCP element
  • Remove loading="lazy" from any above-the-fold images
  • Add a <link rel="preload"> for the main LCP image
  • Test across multiple resolutions (mobile, desktop, tablet)
  • Verify below-the-fold images still retain lazy loading
  • Measure impact with Lighthouse and validate in real conditions via CrUX
  • Monitor Core Web Vitals regularly in Search Console
Disabling lazy loading on above-the-fold images appears to be a simple technical fix, but it requires precise analysis of actual rendering across different devices. The LCP impact is immediate and measurable. Combined with strategic preloading, this optimization significantly improves user experience and Core Web Vitals — two ranking factors confirmed by Google.

❓ Frequently Asked Questions

Le lazy loading natif HTML5 est-il moins performant que les solutions JavaScript ?
Non, le lazy loading natif (attribut loading="lazy") est généralement plus performant car géré directement par le navigateur sans surcharge JavaScript. Le problème n'est pas la méthode, mais son application incorrecte aux images above the fold.
Faut-il également éviter le lazy loading sur les vidéos above the fold ?
Oui, même logique. Si une vidéo constitue l'élément LCP (cas rare mais possible avec des vidéos hero en autoplay), le lazy loading dégradera les performances. Traitez-la comme une image critique.
Comment gérer le lazy loading sur un carrousel en above the fold ?
Chargez immédiatement la première slide sans lazy loading. Les slides suivantes peuvent être lazy loadées puisqu'elles nécessitent une interaction utilisateur pour devenir visibles. Préchargez éventuellement la slide 2 pour fluidifier la transition.
Est-ce que retirer le lazy loading va augmenter mon temps de chargement global ?
Légèrement, oui — vous chargez une ressource supplémentaire dès le départ. Mais l'impact sur le LCP (métrique critique pour le SEO) compense largement. L'objectif est d'optimiser l'expérience perçue, pas uniquement le poids total.
Lighthouse signale une erreur mais mon LCP est bon — dois-je corriger quand même ?
Si votre LCP terrain (CrUX) est effectivement bon malgré l'alerte Lighthouse, vous avez probablement compensé autrement (CDN rapide, serveur performant). Corriger reste recommandé pour sécuriser vos performances, surtout si votre infrastructure évolue.
🏷 Related Topics
Domain Age & History AI & SEO Images & Videos Web Performance Search Console

🎥 From the same video 10

Other SEO insights extracted from this same Google Search Central video · published on 06/05/2022

🎥 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.