I know that altering element's style via JavaScript directly will cause a reflow. However, I was wondering if it is possible to alter multiple style values in a batch with only one reflow?
|
Not directly but there are some good suggestions on minimising the impact of reflows here: http://dev.opera.com/articles/view/efficient-javascript/?page=3 In short, trying something like this: (Copied/pasted)
|
|||
|
|
|
You could put all the styles in a CSS class
and then assign it to the className property
That should trigger only one repaint/reflow |
|||
|
|
|
If you were using jQuery, it has a .css function that allows you to add multiple style at once: $ |
|||
|
You could set the element's visibility to 'hidden', then apply the styles and then make it visible again. |
|||||
|