0
Isn't there a way to use large images n yet not slow down your page
HTML
4 ответов
0
Larger image -> bigger size
The only way to speed up is to have the image on local cache...
But if what you want is to load efficiently the page, you can specify which elements must load first, and download the big images at the end.
0
You should look into image compression. Personally, I highly recommend Google's Guetzli encoder, which is sort of image compression tool.
Located here: https://github.com/google/guetzli
- 1
Larger image -> bigger size
The only way to speed up is to have the image on local cache...
But if what you want is to load efficiently the page, you can specify which elements must load first, and download the big images at the end.
that makes perfect sense but loading the big images last will still make da page slow down especially wen dose images are required
- 2
You should look into image compression. Personally, I highly recommend Google's Guetzli encoder, which is sort of image compression tool.
Located here: https://github.com/google/guetzli
thanks will check it out