A technique where images, videos, or components load only when they are about to enter the user's viewport, improving initial page load performance.
A case study page with 20 screenshots uses lazy loading so only the images near the top load initially — the rest load as the user scrolls.
Implementing lazy loading for images reduces initial page weight by an average of 40–60% on image-heavy pages, with Google reporting that lazy loading is one of the highest-impact Page Speed improvements available.
Deferred loading, On-demand loading
-
Images and videos below the fold on any page — especially long-form pages, blog posts, case study pages, and image galleries where loading all assets at once would significantly delay initial render.
loading="lazy" to any <img> or <iframe> element. Supported in all modern browsers — no JavaScript required.Webflow automatically applies native lazy loading (loading="lazy") to all images below the first content section. For the hero/LCP image, disable lazy loading in the Image Settings panel and add a preload tag via custom code to ensure it loads as early as possible.
Answer