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

Can some please explain to me the difference in transitioning the positional left or right properties or the -transform: translateX(n), as the both seem to achieve the same thing yet can be applied independently. I understand about the possibility of hardware acceleration but that's dependent on implementation.

// psuedo code;

#box {
    -transition-property: all;
    -transition-duration: 1s;
}

// javascript

box.style.transform = "translateX(200px)";
vs
box.style.left = "200px";

What's the advantage of one over the other? Thanks,

p

share|improve this question

2 Answers

Position is dependant on what the position is set to, transform works from the element itself. So you could see transform as being identical to position:relative;.

However, you can still use transform on an absolutely positioned element (to position it relatively without needing an additional element or resorting to margins), as well as transform being CSS3 so if you can use position instead you should.

share|improve this answer
I'm not really sure I understand what your saying. Let me clarify my position. It doesn't really matter what position is set to, the above example provides 2 different ways of do the same thing. This is surely something the CSS spec should avoid. – paulb Aug 26 '11 at 12:10

top and left CSS properties work only on elements with position: relative and position: absolute. Also, top and left properties rely on the parent's position (relative it, absolute or static). Translations are not affected by that settings.


Translation transformations are identical to applying top and left when element has position: relative. In any other case they aren't the same operations.

share|improve this answer
How is this any different than using a margin – Will Den Aug 18 '11 at 14:32
Also worth noting that the performance when transitioning a translate value is far smoother than using a positional or margin value. – Dave Aug 20 '11 at 9:26
Performance is dependent upon browser implementation. I more interested in the philosophical reasons for what get included in the spec. – paulb Aug 26 '11 at 12:12
@WillDen Margin affects the layout where transforms don't. – Ian Kuca Nov 27 '11 at 9:45
Performance test on various browsers: jsperf.com/translate3d-vs-xy/4 (top/left) is the fastest. – Kus Sep 26 '12 at 0:15
show 1 more comment

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.