码迷,mamicode.com
首页 > Web开发 > 详细

[Performance] Optimize Paint and Composite for the website

时间:2018-04-09 23:11:59      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:cost   put   code   bin   zoom   pom   hub   render   prevent   

"Paint" is one of the most preference killer, it can easily cost more than 60fps, and once you trigger "Paint" it always trigger "Composite" as well.

技术分享图片

First  of all, let‘s see how to use Chrome devtools to help us identifiy the Paint problem.

 a. turn on rendering:

技术分享图片

Then check the "Paint flasing" option.

技术分享图片

Then use this demo  site, keep "Paint flashing" open, and you should see when you scrolling the page, the whole page is repainting (mark in green overlay).

技术分享图片

Of course the whole page is re-painting is not good sign for the performance. 

 

Record the timeline for the demo page and scroll a bit, then check the Paint Profilter:

技术分享图片

From here you can pretty much see all the commands it runs and each step what is painted to the page.

 

Composite:

To avoid too much painting, we can put different compoment in different layouts.

For example the side-nav compoment, to prevent the whole page re-paint again and again, we can put side nav in a different layout, so that the main page won‘t re-paint.

技术分享图片

 

Prompt element into a layout:

Code that works:

will-change: transform;
transform: translateZ(0); // hack for some browser not support will-change

DEMO site, you can see it move really slow, but if you add the css to .box, the performance improve a lot.

Notice that, only using layer promption when you are changing the position, opacity stuff, if you want to change text in the element, layer promption doesn‘t make any sence

 

Now let‘s say how to figure out how many layers we have in the site.

We need again our chrome devtools to help.

Select "Layout", and nav to the demo site.

技术分享图片

Zoom in the page, until you are able to scroll the page. 

Then see the dev tool:

技术分享图片

In the layers section, you able to see how many layers you have in the page. And it tell you the reason why it is a composition layer, in the image, it says that "Composition due to association with an element with a css 3D transform".

If you check the css code for "#color-block":

#color-block {
    width: 300px;
    height: 300px;
    background: red;
    transform: translateZ(0); // this is the key
    position: relative;
    z-index: 0;
}

 

And if we select "totes-promoted" block, we can see that "Composition due to association with an element overlapping other composited elements".

技术分享图片

So be careful that when you prompt one element into a layer, the overlapping elements will be also prompted as well.

This may cause memory problem.

 

[Performance] Optimize Paint and Composite for the website

标签:cost   put   code   bin   zoom   pom   hub   render   prevent   

原文地址:https://www.cnblogs.com/Answer1215/p/8763219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!