Skip to content

Native Lazyloading vs SPC Lazyloading

Lazy loading is a powerful technique to improve your website's performance by delaying the loading of off-screen images, iframes, and videos until they're needed. This feature significantly reduces initial page load time and conserves bandwidth, especially for content-heavy pages. Super Page Cache uses the Lazysizes library to provide Lazy loading.

🗒️ Note: You can learn how to use SPC lazy loading feature in this guide.

Here are the key differences between using native browser lazy loading and the solution Super Page Cache comes with:

AspectNative LazyloadingSPC Lazyloading
Lazy Loading TriggerDepends on browser implementation, which can be overly conservative.Uses a fine-tuned approach to lazy load more aggressively, resulting in faster initial page loads.
Resource TypesPrimarily focused on images and iframes.Handles images, iframes, videos, and CSS background images, providing more comprehensive optimization.
CompatibilityWorks best with images properly set up in the WordPress media library.Works with all images, including those added directly to content or from external sources.
Background ImagesDoes not support lazy loading of CSS background images.Fully supports lazy loading of background images, crucial for many modern designs.
CustomizationLimited options for customization.Offers extensive customization including exclusions, skip counts for above-the-fold content, and more.
Browser SupportImplementation can vary across browsers.Provides consistent behavior across all major browsers.
Above-the-fold ContentMay lazy load important above-the-fold content, potentially harming user experience.Allows you to specify how many images to skip or exclude critical content from lazy loading.
WebP SupportSupport for WebP varies by browser.Fully supports WebP, ensuring optimal performance with this efficient image format.
Performance MetricsBasic improvement in loading times.Optimized to improve Core Web Vitals scores, particularly Largest Contentful Paint (LCP) and Cumulative Layout Shift (CLS).
Was this helpful?