Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 4 down vote accepted

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)

The second approach is to define a new style attribute for the element, instead of assigning styles one by one. Most often this is suited to dynamic changes such as animations, where the new styles cannot be known in advance. This is done using either the cssText property of the style object, or by using setAttribute. Internet Explorer does not allow the second version, and needs the first. Some older browsers, including Opera 8, need the second approach, and do not understand the first. So the easy way is to check if the first version is supported and use that, then fall back to the second if not.

var posElem = document.getElementById('animation');
var newStyle = 'background: ' + newBack + ';' +
  'color: ' + newColor + ';' +
  'border: ' + newBorder + ';';
if( typeof( posElem.style.cssText ) != 'undefined' ) {
  posElem.style.cssText = newStyle;
} else {
  posElem.setAttribute('style',newStyle);
}
share|improve this answer

You could put all the styles in a CSS class

.foo { background:#000; color:#fff; ... }

and then assign it to the className property

// javascript
var your_node = document.getElementById('node_id');
your_node.className = 'foo'

That should trigger only one repaint/reflow

share|improve this answer
+1 Definitely the approach to go for, in my view. – lonesomeday Nov 17 '10 at 18:16

If you were using jQuery, it has a .css function that allows you to add multiple style at once:

$('element').css({'color':'red', 'border':'#555 solid thin'});

share|improve this answer
Nice thinking - I'll have to look at what that actually does behind the scenes – Basic Nov 17 '10 at 18:03
1  
That still causes a reflow. – Tower Nov 18 '10 at 7:02

You could set the element's visibility to 'hidden', then apply the styles and then make it visible again.

share|improve this answer
1  
That still causes a reflow. – Tower Nov 18 '10 at 6:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.