Reputation: 2834
I am currently developing a site in PHP where in a page 1000 of images is loading through AJAX. So it is taking a lot of time. Is there any Optimization Technique that can decrease load time. I dont want to change our image quality.
Image encoding will be helpfull?
Upvotes: 4
Views: 1347
Reputation: 10169
Optimization and micro-optimization thoughts:
This is probably the most important factor to really decrease the loading time (less to download -> faster to finish)
Access times are another important factor
Upvotes: 2
Reputation: 219
Look into the caching logic for the pages. The images might be able to be cached by the web server. Do you use Apache or IIS?
Upvotes: 1
Reputation: 1170
better to display initially 50 images and load the remaining when page scrolled. here is an example of loading page at the time of scrolling
Upvotes: 0