How to make the 1st part of the site loads first? (Like in Google PageSpeed)

前端 未结 14 1698
野性不改
野性不改 2021-01-31 11:01

I have a very large site and it takes pretty long time to load. It takes around 120 seconds. What I\'m trying to do is loads 1st half of the site loads 1st. Then user can surf w

14条回答
  •  轮回少年
    2021-01-31 11:29

    Don't browsers render the document as it comes in? Whatever you put at the top of the file will be received by the client first, and therefore will be displayed first. For example, when you try to view a very large image file online, it loads from top to bottom. The same is true for web pages. Just put the content you want to load first at the top of the page!

    Answer to question one: yes Answer to question two: above Answer to question three: Nothing, just put the page in the correct order.

提交回复
热议问题