
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Google Chrome Version 79+ rolled out the new feature that allows developers too lazy load images by adding simple loading="lazy"
or loading="eager"
attributes to images.
Don't skip stay tuned till end of the article. I have shown you various implementation and tips too :)
loading="lazy"
)If you don't want the images to be loaded till the time users scrolls down to the content which is located off the screen then you can use the following loading attribute
<img src="image.png" loading="lazy" alt="Alternate name of the image">
<picture>
<source media="(min-width: 800px)" srcset="large.jpg 1x, larger.jpg 2x">
<img src="photo.jpg" loading="lazy">
</picture>
loading="eager"
)If you want the images to be loaded immediately irrespective of the offscreen images or on screen images then you can use eager loading.
<img src="image.png" loading="eager" alt="Alternate name of the image">
<picture>
<source media="(min-width: 800px)" srcset="large.jpg 1x, larger.jpg 2x">
<img src="photo.jpg" loading="eager">
</picture>
<img loading=lazy>
is supported by most popular Chromium-powered browsers (Chrome, Edge, Opera), Firefox and the implementation for WebKit (Safari) is in progress.
Avoid lazy-loading images that are in the first visible viewport. Google recommends to add loading="lazy" to only images that are offscreen so make sure to keep in mind.
Hope this trick will help you load your website very faster than earlier with slightest change to your image.
Lazy Load Images In Chrome With This Simple Trick
GitHub Login With PHP Laravel Socialite
Generate Fake Data In PHP With Faker
Facebook Login With PHP Laravel Socialite
Ensure text remains visible during Webfont load
Proper Way To Validate MIME Type Of Files While Handling File Uploads In PHP
Search Engine Optimization Concepts
Setup AMP (Accelerated Mobile Pages) In PHP Laravel
Route Model Binding In Laravel & Change Default Column id To Another Column
Basic Server Security Setup For Ubuntu / Linux
Resolve 404 Not Found In NGINX
Firebase Cloud Messaging (FCM) Browser Web Push Notifications Using Javascript And PHP