Coder Social home page Coder Social logo

前端: 浏览器: reflow & repaint about blog HOT 2 OPEN

xvno avatar xvno commented on July 17, 2024
前端: 浏览器: reflow & repaint

from blog.

Comments (2)

xvno avatar xvno commented on July 17, 2024

Reflow

对Element(E)的某些改变影响到了它的layout时, 会引起E自身 & E的祖先(ancestor) & 子元素(children) & E之后的元素(elements following E)的reflow... 所以性能影响很恐怖.

引起reflow的条件

  • Resizing the window
  • Changing the font
  • Adding or removeing a stylesheet
  • Content changes, inputing text in a input box
  • Activation of CSS pseudo classes, :hover, etc.
  • Manipulating the class attribute
  • A script manipulating the DOM
  • Calculating offsetWidth / offsetHeight
  • Setting a property of the style attribute

避免 or 最小化reflow带来的性能影响

针对上述条件, 尽量避免引起reflow
其他

  • 换用style, 减少操作class(class影响范围越小越好, 即在DOM-tree中越低越好)
  • 避免在操作style时, 多行赋值, 改为一次变更(传obj)
  • 给已经把position定位为absolute 或 fixed的元素设置animation
  • 避免使用tables来layout

from blog.

xvno avatar xvno commented on July 17, 2024

Repaint

from blog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.