Lazy load images
See original GitHub issueI was wondering if it’s possible to use Locomotive Scroll with an external lazy load plugin or even a native solution like loading='lazy'
. Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Lazy loading images - web.dev
Lazy loading images ... Images can appear on a webpage due to being inline in the HTML as <img> elements or as CSS...
Read more >Lazy loading - Web performance | MDN
Lazy loading is a strategy to identify resources as non-blocking (non-critical) and load these only when needed. It's a way to shorten the ......
Read more >Lazy Loading Images – The Complete Guide - ImageKit.io
Lazy Loading Images is a set of techniques in web and application development that defer the loading of images on a page to...
Read more >Five Ways to Lazy Load Images for Better Website Performance
Lazy loading images means loading images on websites asynchronously — that is, after the above-the-fold content is fully loaded, ...
Read more >How to Lazy Load Images in Javascript | BrowserStack
Lazy Loading images is a technique to load images on a web page only when required. This way can improve the page's loading...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey, if you want to load images while scrolling, you can use
data-scroll-call
with something like this. If you want to load all the images after the rest of the page is loaded, we use modularLoad withdata-load-src
. You can see a demo page with both ways in our boilerplate.I couldn’t make it work either, with the provided examples. Tried using
loading='lazy'
, which works, but breaks everything else.