jQuery-3D-transform icon indicating copy to clipboard operation
jQuery-3D-transform copied to clipboard

transform-origin Z axis

Open Kolostov opened this issue 10 years ago • 0 comments

origin supports only x and y axis like ['10%', '10%'] but i really need to also set a Z axis, would be nice like that: ['10%', '10%', '10%'] fixing this with css like:

$('#'+targ).css({ '-webkit-transform-origin': value.join(' '), '-moz-transform-origin': value.join(' '), '-o-transform-origin': value.join(' '), '-ms-transform-origin': value.join(' '), 'transform-origin': value.join(' ') });

Works until i update 'targ' via .transform() where i cant pass Z origin. a Quick fix anyone? Or can you implement the Z origin in current version as a patch?

Kolostov avatar Oct 09 '15 11:10 Kolostov