Loading images Faster in Webpage

前端 未结 14 2044
死守一世寂寞
死守一世寂寞 2020-12-30 23:39

In the web application when i click on a link that should load an image from server, it is taking too much time since the images are sized approxmately 3MB - 5 MB, we are un

14条回答
  •  無奈伤痛
    2020-12-31 00:11

    Tips:

    • If images are common among several pages, you may use CSS Image Sprite thing, that will reduce the round trips and for faster delivery of image you may use CDN.
    • If images are random try async loading of Images, this will not kill the UI/UX.
    • Convert images to png then use them, or you may try new WebP as stated above.

提交回复
热议问题