How to make page loading faster when working with high quality images | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to make page loading faster when working with high quality images

I have multiple images on my website so I want to know how to optimise the images so that the page loading speed increases.

22nd Nov 2018, 1:18 PM
KUMAR SHASHWAT
KUMAR SHASHWAT - avatar
2 Answers
+ 6
Maybe you can display image using jS. Use window.onload. Eg: window.onload=function a(){ var img=document.getElementById('image'); img.src="link of pic"; }
22nd Nov 2018, 1:24 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 3
You should look up "lazy loading images" for various strategies. https://css-tricks.com/snippets/javascript/lazy-loading-images/ Another thing you could look into is image compression and decompression, but I don't really work at that low of a level, so I couldn't tell you much about it.
22nd Nov 2018, 1:59 PM
Janning⭐
Janning⭐ - avatar