Is it possible to use jQuery to animate a webkit translate3d?
I read that when using the animate property of jQuery that you must camel case the css properties but in the case of the translate3d this doesn't seem to work.
I have the following code that I would like to animate instead of it just happening immediately?
$("#main-nav").css('-webkit-transform', "translate3d(0px, " + e + "px, 0px) scale(1)");
For clarification "e" is a variable that is passed to a function that my above code is run from.