
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.
Make Laravel Controllers Slim By Skimming Form Validation Request
What Is HTTP? Different HTTP Methods And Status Codes Explained With Examples
Use Different PHP Versions In Ubuntu / Linux
Comment And Like System Using Disqus
Integrate Google Translate Into Your Website
Create Zip File On The Fly With Streaming Download In PHP Laravel
Why You Should Run Cronjobs In Laravel?
Multiple File Uploads In Laravel PHP
Foreign Key Migrations Simplified In Laravel 7.x
Sass or SCSS @mixin vs @extends vs Placeholder (%)