translate3d vs translate vs css left/top (v81)

Revision 81 of this benchmark created on


Preparation HTML

<div id="elem" style="position: absolute; background:#ccc; width:10px; height:10px;"></div>
<script>
  var elem = document.getElementById("elem");
  var style = elem.style;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
translate3d
var x = 0,
  t = '';

style.WebkitTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.MozTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.OTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.msTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.transition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';

for (var i = 20; i--;) {
  x = i * 5;
  t = 'translate3d(' + x + 'px, ' + x + 'px, 0) rotate(' + x + 'deg)';
  style.WebkitTransform = t;
  style.MozTransform = t;
  style.OTransform = t;
  style.msTransform = t;
  style.transform = t;
}
ready
translate
var x = 0,
  t = '';

style.WebkitTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.MozTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.OTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.msTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.transition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';

for (var i = 20; i--;) {
  x = i * 5;
  t = 'translate(' + x + 'px, ' + x + 'px) rotate(' + x + 'deg)';
  style.WebkitTransform = t;
  style.MozTransform = t;
  style.OTransform = t;
  style.msTransform = t;
  style.transform = t;
}
ready
left
var x = 0,
  t = '';

style.WebkitTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.MozTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.OTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.msTransition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';
style.transition = 'all 250ms cubic-bezier(0.85,0,0.15,1)';

for (var i = 20; i--;) {
  x = i * 5;
  t = x + 'px';
  style.left = t;
  style.top = t;
  t = 'rotate(' + x + 'deg)';
  style.WebkitTransform = t;
  style.MozTransform = t;
  style.OTransform = t;
  style.msTransform = t;
  style.transform = t;
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.