Is there any way to combine (mix) css transform properties without overriding? For example there I want to rotate and scale. http://jsfiddle.net/hyzhak/bmyN3/
One thing you could do is get the computed transform style in JS and concatenate your secondary transform value:
HTML
CSS
.rotate-scale {
transform: rotate(90deg);
}
JS
var el = document.querySelector('.rotate-scale'),
// rotation will get the transform value declared in css
rotation = window.getComputedStyle(el).getPropertyValue('transform');
el.style.transform = rotation + 'scale(0.25, 0.25)';