I have a website which includes the 1500+ images. It’s speed is slow down when I put images Slides through Html. My websites speed totally down and can’t run due to load. What is the best solution to optimize the speed while bulk of images.
1 Like
There are various things you can do to optimize your website’s speed such as image compression, making sure that you load images in the correct dimensions, using a CDN, pagination and so on, but one of the things I would look at first is lazy loading.
This means that instead of loading 1500 images in one go, the browser only loads the images currently visible on the screen or those about to enter the viewport. As the user scrolls through the website, additional images are loaded dynamically, reducing the initial page load time and improving overall performance.
Here’s an article to get you started:
1 Like