A native lazy load for the Web platform

A new Chrome feature dubbed “Blink LazyLoad” is designed to dramatically improve performance by deferring the load of below-the-fold images and third party iFrames.

Ben Schwarz
Calibre Blog
3 min readAug 16, 2018

--

The goals of this bold experiment are to improve the overall render speed of content that appears within the users viewport (also known as above-the-fold), as well as, reduce network data and memory usage. ✨

👨‍🏫 How will it work?

It’s thought that temporarily delaying less important content will drastically improve overall perceived performance.

If this proposal is successful, automatic optimisations will be run during the load phase of a page:

Images and iFrames will be analysed to gauge importance. If they’re seen to be non-essential, they will be deferred, or not loaded at all:

  • Deferred items will only be loaded if the user has scrolled to the area nearby.
  • A blank placeholder image will be used until an image is fetched.

The public proposal has a few interesting details:

LazyLoad is made up of two different mechanisms; LazyImages and LazyFrames.

Deferred Images and iFrames will be loaded when a user has scrolled within a given number of pixels. The number of pixels will vary based on three factors:

  1. If it is an iFrame or an image
  2. Data Saver is enabled or disabled
  3. The ”effective connection type

Once the browser has established that an image is located below the fold, it will issue a range request to fetch the first few bytes of an image to establish its dimensions. The dimensions will then be used to create a placeholder.

The lazy loading attribute will allow authors to specify which elements should, or should not be lazy loaded. Here’s an example that indicates that this content is non-essential:

There are three options:

  1. on - Indicates a strong preference to defer fetching until the content can be viewed.
  2. off - Fetch this resource immediately, regardless of view-ability.
  3. auto - Let the browser decide (has the same effect as not using the lazyload attribute at all).

Implementing a secure LazyLoad policy

Feature policy: lazyload will provide a mechanism that allows authors to force opting in or out of lazyload functionality on a per-domain basis (similar to how Content Security Policies work). There is a yet-to-be-merged pull request that describes how it might work.

🤔 What about backwards compatibility?

At this point, it is difficult to tell if these page optimisations could cause compatibility issues for existing sites.

Third party iFrames are used for a large number of purposes like ads, analytics or authentication. Delaying, or not loading a crucial iFrame (because the user never scrolls that far) could have dramatic unforeseeable effects.

Pages that rely on an image or iFrame having been loaded and present when onLoad fires could also face significant issues.

These automatic optimisations could silently and efficiently speed up Chrome’s rendering speed without any notable issues for users. The Google team behind the proposal are carefully measuring the performance characteristics of LazyLoad’s effects through metrics that Chrome records.

💻 Enabling LazyLoad

At the time of writing LazyLoad is available in only available in Chrome Canary, behind two required flags:

  1. chrome://flags/#enable-lazy-image-loading
  2. chrome://flags/#enable-lazy-frame-loading

Flags can be enabled by navigating to chrome://flags in a Chome browser.

📚 References and materials

👋 In closing

As we embark on welcoming the next billion users to the web, it’s humbling to know that we are only just getting started in understanding the complexity of browsers, connectivity and user-experience. Be sure to subscribe to see more posts like this.

Originally published at calibreapp.com on August 16, 2018.

--

--