为什么页面花费这么多时间来加载? 它处于等待状态?

I have this website which I designed , It takes a lot of time to load the Page. The Chrome Console shows its in Waiting state , What is that and how can I fix it ?

So much time to Load the page

I think it might be the call to the facebook graph api which takes some time...

It seems that all that JavaScript is slowing down the page. Right now, after you have removed the token check, the HTML loads fine, but the page still loading for a long time until it finally gets all it needs to finish building the page.

Solution

  • #1 Move the JS to the bottom of the page.
  • #2 If you really need all those asynchronous content, try to load offline as much as you can. Cache it if you can.