CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Follow publication

CODEX

OMONP#2: Image Lazy Loading With LazySizes

Jon Portella
CodeX
Published in
2 min readMar 23, 2021

--

Welcome to issue #1 One Minute, One NPM Package, where you discover cool NPM packages and how to use them in one minute.

⏮️ 🔛

What we will build

THE PROBLEM

The images on our website load all at the same time, including the ones that are not in view, blocking other assets to be downloaded.

This makes our website take longer to load, and has a bad effect on our UX.

A SOLUTION

We are going to use a nice little package called LazySizes to make images load only when they are scrolled into view.

To do that we only need to:

  1. Replace the src attribute on images with a data-src attribute, so the browser doesn’t download them automatically. Also, this allows LazySizes to take the image source in order to request it when scrolled into view.
  2. Add a class of lazyload to the image, so LazySizes knows it has to act on that element.

Here’s a quick demo, scroll to make images appear. You can check the network tab on the browser’s DevTools and you’ll see image requests being done as you scroll!

SImple image lazyloading with LazySizes.

--

--

CodeX
CodeX

Published in CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Jon Portella
Jon Portella

Written by Jon Portella

Software Engineer @ Pinterest - Teacher, maker, and general things do-er. - https://www.linkedin.com/in/jonportella/ - Toronto, Canada

No responses yet

Write a response