Skip to main content
短.be

Lazy Loading

An optimization technique that defers loading of resources until they are actually needed, significantly improving initial page load speed.

Dec 10, 2025 · About 1 min read

SEO

Lazy loading is a web optimization technique that defers the loading of resources (images, videos, iframes, etc.) until they are about to enter the user's viewport. By fetching only the resources needed for the initial view and loading the rest on scroll, initial page load speed improves dramatically.

Adding the loading="lazy" attribute to an HTML img element enables native browser lazy loading. Chrome, Firefox, Safari, and Edge all support this attribute. No JavaScript library is required, making the implementation cost extremely low.

The impact on Core Web Vitals is substantial, particularly for LCP (Largest Contentful Paint). On a page with 50 images, loading all of them simultaneously competes for bandwidth. With lazy loading, only the few images visible on screen are fetched first. According to HTTP Archive data, adopting lazy loading reduces median page weight by roughly 20%.

Implementing lazy loading on the destination page of a shortened URL directly improves user experience. Users who click a campaign link expect to see content immediately; a slow initial load increases bounce rates. Google's research shows that when page load time increases from 1 second to 3 seconds, the bounce rate rises by 32%.

An important caveat: do not apply loading="lazy" to above-the-fold images (those visible without scrolling). Lazy loading above-the-fold images delays LCP and hurts Core Web Vitals scores. You can find related books on Amazon.

Share on XHatena

Was this article helpful?

Related Terms

Related Articles

FAQ

Is lazy loading hard to implement?
No. Simply add loading="lazy" to your img tags for native browser support. No JavaScript is needed, and all major browsers support it. It is one of the easiest performance improvements available.
Should I add loading="lazy" to every image?
No. Do not apply it to above-the-fold images (those visible without scrolling). Lazy loading those images delays LCP (Largest Contentful Paint) and worsens Core Web Vitals scores.
Does lazy loading affect SEO?
When implemented correctly, it benefits SEO. Faster page loads improve Core Web Vitals scores, which positively influence search rankings. Just ensure that critical content is not deferred in a way that prevents Googlebot from crawling it.

Ready to create a short URL?

Shorten a URL for Free