Large chunk of no activity in Chrome DevTools'

2019-08-28 19:55发布

Okay, I'm trying to detect a reason for a slow loading of a website page using network tab in chrome devtools. In my past experience there always were some large files or slow links to 3rd party sources, but now I'm in total confusion because for a large amount of time there is no downloads at all: screenshot of network tab

What is also strange is than for a last second there is a file with a size less than 1 kilobyte and it's loading for half of a second, although it's not a main issue here.

1条回答
Juvenile、少年°
2楼-- · 2019-08-28 20:15

Try using the Performance panel instead. My guess is that your page is running a lot of JavaScript during the "large chunk of no activity".

Open the Performance panel and click Reload.

Reload

If you see a wall of yellow activity in the CPU chart, it means that your CPU was completely busy running JavaScript.

CPU

The Audits panel is the best tool in DevTools for learning how to improve your page load speed. It runs a bunch of tests on whatever page you've got open and gives you tips on how to speed up the page. Check out Optimize Website Speed.

查看更多
登录 后发表回答