Forked from faressoft/dom_performance_reflow_repaint.md
Created
August 14, 2023 04:08
-
-
Save SimoneCheng/5d1219c9cd68bca2fd1df66f36c07b46 to your computer and use it in GitHub Desktop.
Revisions
-
faressoft renamed this gist
Oct 18, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -94,7 +94,7 @@ document.getElementById('box5').style.height = box5Height + 10 + 'px'; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ``` # Performance Tips (VanillaJS, jQuery) * Optimize Selectors * jQuery uses: -
faressoft renamed this gist
Oct 18, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,7 @@ * Reflow (Layout, LayoutFlush, LayoutThrashing) * Occurs when the changes affect the layout. * Triggers examples: `width`, `position`, `float`. * Recalculate of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions like `focus`). * `Reflow` only has a `cost` if the document has changed and `invalidated` the `layout`. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,10 +17,10 @@ * Repaint: `renders` the `pixels` to screen. * Repaint * Occurs when changes affect the visibility. * Triggers examples: `opacity`, `color`, `background-color`, `visibility`. * Reflow (Layout, LayoutFlush, LayoutThrashing) * Occurs when the changes affect the layout. * Triggers examples: `width`, `position`, `float`. * It is re-calculation of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions like `focus`). -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ # DOM Performance  * How the browser renders the document * Receives the data (bytes) from the server. * Parses and converts into tokens (<, TagName, Attribute, AttributeValue, >). -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ * How the browser renders the document * Receives the data (bytes) from the server. * Parses and converts into tokens (<, TagName, Attribute, AttributeValue, >). * Turns tokens into nodes. * Turns nodes into the `DOM` tree. * Builds `CSSOM` tree from the `css rules`. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,7 +22,7 @@ * It is re-calculation of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions like `focus`). * `Reflow` only has a `cost` if the document has changed and `invalidated` the `layout`. * `Something Invalidates` + `Something Triggers` = `Costly Reflow`. ## Minimizing Repaints And Reflows -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,7 @@ * Triggers samples: `width`, `position`, `float`. * It is re-calculation of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions like `focus`). * `Reflow` only has a `cost` if the document has changed and `invalidated` the `style` or `layout`. * `Something Invalidates` + `Something Triggers` = `Costly Reflow`. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,10 +15,10 @@ * Repaint: `renders` the `pixels` to screen. * Repaint * Occurs when changes affect the visibility. * Triggers samples: `opacity`, `color`, `background-color`, `visibility`. * Reflow (Layout, LayoutFlush, LayoutThrashing) * Occurs when the changes affect the layout. * Triggers samples: `width`, `position`, `float`. * It is re-calculation of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions `focus`). -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -31,9 +31,10 @@ * Add `class`. * Change the `cssText`. * Batch DOM changes * Options to batch DOM changes * Use a `documentFragment` to hold temp changes. * Clone, update, replace the node. * Hide the element with `display: none` (1 reflow, 1 repaint), add 100 changes, restore the display (total 2 reflow, 2 repaint). * Don't ask for computed styles repeatedly, cache them into variable. * Multiple reads/writes (like for the `height` property of an element) * Writes, then reads, from the DOM, multiple times causing document reflows. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Chrome provide a really great tool that helps us to figure out what is going on with our code, how many reflows (layout) and repaint do we have and more details about the memory, events, etc. Bad code with `6` costly reflows (layout):  -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,6 +41,7 @@ * To fix: read everything first then write everything. * Resources * [CSSTriggers](https://csstriggers.com/). * [What forces layout / reflow](https://gist.github.com/paulirish/5d52fb081b3570c81e3a). # Chrome DevTools Performance -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ * Parsing by converting into tokens (<, TagName, Attribute, AttributeValue, >) classification. * Turns tokens into nodes. * Turns nodes into the `DOM` tree. * Builds `CSSOM` tree from the `css rules`. * `CSSOM` and `DOM` trees are combined into a `RenderTree`. * Computes which elements are `visible` and their `computed styles`. * Starting from the root of the dom tree. -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -99,7 +99,7 @@ document.getElementById('box6').style.height = box6Height + 10 + 'px'; * jQuery selector extensions. * Avoid jQuery selector extensions (`:even`, `:has`, `:gt`, `:eq`). * Avoid complex specificity. * ID-Based Selectors the fastest. * Add `style` element for chaning > 20 instead of `.css`. * Cache Length During Loops. * Avoid inspecting large numbers of nodes -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -72,6 +72,8 @@ document.getElementById('box6').style.height = box6Height + 10 + 'px'; Optimized to have `1` reflow:  ```js var box1Height = document.getElementById('box1').clientHeight; var box2Height = document.getElementById('box2').clientHeight; -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Chrome provide a really great tool that helps us to figure out what is going on Bad code with a `6` costly reflows (layout):  ```js var box1Height = document.getElementById('box1').clientHeight; @@ -88,8 +88,6 @@ document.getElementById('box5').style.height = box5Height + 10 + 'px'; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ``` # jQuery Performance * Optimize Selectors -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -48,6 +48,8 @@ Chrome provide a really great tool that helps us to figure out what is going on Bad code with a `6` costly reflows (layout): [[https://i.imgur.com/gn2fElE.png]] ```js var box1Height = document.getElementById('box1').clientHeight; document.getElementById('box1').style.height = box1Height + 10 + 'px'; @@ -68,8 +70,6 @@ var box6Height = document.getElementById('box6').clientHeight; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ``` Optimized to have `1` reflow: ```js -
faressoft revised this gist
Oct 17, 2017 . 2 changed files with 0 additions and 0 deletions.There are no files selected for viewing
Binary file not shown.Binary file not shown. -
faressoft revised this gist
Oct 17, 2017 . 3 changed files with 4 additions and 0 deletions.There are no files selected for viewing
LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed.LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed.This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -68,6 +68,8 @@ var box6Height = document.getElementById('box6').clientHeight; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ```  Optimized to have `1` reflow: ```js @@ -86,6 +88,8 @@ document.getElementById('box5').style.height = box5Height + 10 + 'px'; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ```  # jQuery Performance * Optimize Selectors -
faressoft revised this gist
Oct 17, 2017 . 1 changed file with 44 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,6 +41,50 @@ * To fix: read everything first then write everything. * Resources * [CSSTriggers](https://csstriggers.com/). # Chrome DevTools Performance Chrome provide a really great tool that helps us to figure out what is going on with our code, how many reflows (layout) and repaint do we have and more details about the memory, events, etc. Bad code with a `6` costly reflows (layout): ```js var box1Height = document.getElementById('box1').clientHeight; document.getElementById('box1').style.height = box1Height + 10 + 'px'; var box2Height = document.getElementById('box2').clientHeight; document.getElementById('box2').style.height = box2Height + 10 + 'px'; var box3Height = document.getElementById('box3').clientHeight; document.getElementById('box3').style.height = box3Height + 10 + 'px'; var box4Height = document.getElementById('box4').clientHeight; document.getElementById('box4').style.height = box4Height + 10 + 'px'; var box5Height = document.getElementById('box5').clientHeight; document.getElementById('box5').style.height = box5Height + 10 + 'px'; var box6Height = document.getElementById('box6').clientHeight; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ``` Optimized to have `1` reflow: ```js var box1Height = document.getElementById('box1').clientHeight; var box2Height = document.getElementById('box2').clientHeight; var box3Height = document.getElementById('box3').clientHeight; var box4Height = document.getElementById('box4').clientHeight; var box5Height = document.getElementById('box5').clientHeight; var box6Height = document.getElementById('box6').clientHeight; document.getElementById('box1').style.height = box1Height + 10 + 'px'; document.getElementById('box2').style.height = box2Height + 10 + 'px'; document.getElementById('box3').style.height = box3Height + 10 + 'px'; document.getElementById('box4').style.height = box4Height + 10 + 'px'; document.getElementById('box5').style.height = box5Height + 10 + 'px'; document.getElementById('box6').style.height = box6Height + 10 + 'px'; ``` # jQuery Performance -
faressoft renamed this gist
Oct 17, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
faressoft created this gist
Oct 17, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,60 @@ # DOM Performance * How the browser renders the document * Receives the data (bytes) from the server. * Parsing by converting into tokens (<, TagName, Attribute, AttributeValue, >) classification. * Turns tokens into nodes. * Turns nodes into the `DOM` tree. * Build `CSSOM` tree from the `css rules`. * `CSSOM` and `DOM` trees are combined into a `RenderTree`. * Computes which elements are `visible` and their `computed styles`. * Starting from the root of the dom tree. * `Not visible` elements like (`meta`, `script`, `link`) and `display: none` are ommited from the render tree. * For each `visible` node, find the appropriate `matching CSSOM` `rules` and apply them. * Reflow: `compute` the layout of each `visible` element (position and size). * Repaint: `renders` the `pixels` to screen. * Repaint * Occurs when changes affect the visibility. * `opacity`, `color`, `background-color`, `visibility`. * Reflow (Layout, LayoutFlush, LayoutThrashing) * Occurs when the changes affect the layout. * `width`, `position`, `float`. * It is re-calculation of positions and dimensions. * Has a bigger impact, changing a single element can affect all children, ancestors, and siblings or the whole document. * Triggers (chagne dom or css, scrolling, user actions `focus`). * `Reflow` only has a `cost` if the document has changed and `invalidated` the `style` or `layout`. * `Something Invalidates` + `Something Triggers` = `Costly Reflow`. ## Minimizing Repaints And Reflows * Don't change styles by multiple statements, instead: * Add `class`. * Change the `cssText`. * Batch DOM changes * Use a `documentFragment` to hold temp changes. * Clone, update, replace the node. * Hide the element with `display: none` (1 reflow, 1 repaint), add 100 changes, restore the display (total 2 reflow, 2 repaint). * Don't ask for computed styles repeatedly, cache them into variable. * Multiple reads/writes (like for the `height` property of an element) * Writes, then reads, from the DOM, multiple times causing document reflows. * Read(`cached`), write(`invalidate layout`), read(`trigger layout`). * To fix: read everything first then write everything. * Resources * [CSSTriggers](https://csstriggers.com/). # jQuery Performance * Optimize Selectors * jQuery uses: * `document.querySelectorAll()`. * `document.getElementById()` faster. * jQuery selector extensions. * Avoid jQuery selector extensions (`:even`, `:has`, `:gt`, `:eq`). * Avoid complex specificity. * ID-Based Selectors * Add `style` element for chaning > 20 instead of `.css`. * Cache Length During Loops. * Avoid inspecting large numbers of nodes * `document.getElementById('id').getElementsByTagName('*')` better than `document.getElementsByTagName('*')`. * Cache DOM values in script variables * `var sample = document.getElementById('test')`