1
I am trying to make a function that increases or decreases the size of an object. I use the transform: scale
. But my object already uses transform: translated3d
to set the position of the same. Thus, the css is as follows:
transform: translate3d(-862px, 512px, 0px) scale(0.5, 5);
However when determining by jQuery a new scale
, It replaces my entire Transform.
How to upgrade my Transform to a new Scale without losing mine translated 3d
?
Does anyone have any idea?