How to download web resources first? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

How to download web resources first?

I have some images to be downloaded in my website. Instead of downloading them when they're going to be called, i want it to be completely downloaded before i call them. So it will appears a complete image when i call them, instead of waiting for it's complete load. Is there any method to do this master? Thank you

1st Nov 2020, 2:57 AM
Wan
Wan - avatar
1 Réponse
+ 1
CSS: image: display: none; JavaScript: image.onload = showSite(); function showSite() { image.style.display = 'block'; }
1st Nov 2020, 3:39 AM
Claude Dumont
Claude Dumont - avatar