I want to apply a translate transformation to a <div>, and then be able to return that <div> to its original place.
Applying the same operation with negated values doesn't return the DIV to the original place in the screen:
Applied translation:
-webkit-transform: translate(300px, 400px);The "undo" effect that is not working:
-webkit-transform: translate(-300px, -400px);
I want to control the undo levels, so reseting the transforms is not an option.