zoukankan      html  css  js  c++  java
  • [Performance] Optimize Paint and Composite for the website

    "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.

  • 相关阅读:
    duilib listUI滚动列表的时候回出现在LIst外面显示的情况
    VS中关于字节大小的总结
    linux系统上搭建egret构建环境(针对5.3.x 版以上)
    android studio 2.0 Gradle HttpProxy 设置
    低压差稳压器--AMS1117芯片简介
    车联网技术简介
    MATLAB语音信号处理
    汇编语言系列Ⅳ 实现发出各种声音
    汇编语言系列Ⅲ 实现字符串操作
    汇编语言系列Ⅱ 实现简单数学运算
  • 原文地址:https://www.cnblogs.com/Answer1215/p/8763219.html
Copyright © 2011-2022 走看看