I would like to apply transition rules to elements with javascript, so far this works for webkit:
this.self.style.webkitTransform = 'translate3D('+(d+this.position)+'px,0px,0)'
what are the other vendor specific property names?
‘webkitTransform’ as for mozilla specific, opera etc.
Thanks!
Firefox uses the case-sensitive
MozTransform, Opera isOTransform, and IE9 usesmsTransform. I don’t think the other IE browsers use it, but they may be covered by the generaltransform.See also this page.